add some alternatives #127
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
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: download gdrive files | |
shell: bash | |
run: | | |
curl -s -L https://gist.github.com/knzai/75702a336a25646e6c0039f96d5732b9/raw > ggdrive.sh | |
bash ggdrive.sh gdrive_files.csv | |
env: | |
#do both since gist updates can be slow | |
G_API_KEY: ${{secrets.GOOGLE_API_KEY}} | |
GAPI_KEY: ${{secrets.GOOGLE_API_KEY}} | |
- uses: zolacti/on@main |