Skip to content

Instantly share code, notes, and snippets.

@GianlucaGuarini
Created January 8, 2020 21:31
Show Gist options
  • Save GianlucaGuarini/911f244bfc29931ee14788065553e92b to your computer and use it in GitHub Desktop.
Save GianlucaGuarini/911f244bfc29931ee14788065553e92b to your computer and use it in GitHub Desktop.
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