Created
January 8, 2020 21:31
-
-
Save GianlucaGuarini/911f244bfc29931ee14788065553e92b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main | |
on: | |
schedule: | |
- cron: 30 12 * * * | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- name: Installing Node Dependencies | |
run: npm install | |
- name: Build | |
env: | |
INSTA_ACCOUNT: ${{ secrets.INSTA_ACCOUNT }} | |
INSTA_PASSWORD: ${{ secrets.INSTA_PASSWORD }} | |
run: npm start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment