Update Public CDN 0.0.5 #661
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
# This is a basic workflow to help you get started with Actions | |
name: Update Public CDN 0.0.5 | |
# description: manage the public CDN | |
on: | |
schedule: | |
- cron: '45 0 * * *' | |
workflow_dispatch: | |
jobs: | |
update-public: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
- name: install node packages | |
run: yarn install | |
- name: Update CDN | |
run: yarn update-cdn | |
env: | |
APP_AWS_BUCKET: ${{secrets.APP_AWS_BUCKET}} | |
APP_AWS_REGION: ${{secrets.APP_AWS_REGION}} | |
APP_AWS_ACCOUNT_ID: ${{secrets.APP_AWS_ACCOUNT_ID}} | |
APP_AWS_ACCESS_KEY_ID: ${{secrets.APP_AWS_ACCESS_KEY_ID}} | |
APP_AWS_SECRET_ACCESS_KEY: ${{secrets.APP_AWS_SECRET_ACCESS_KEY}} | |
- name: timestamp update | |
run: yarn timestamp-update | |
env: | |
TIMESTAMP_PATH: ./scripts/update-cdn-last-run.txt | |
- name: commit files | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Atlas Bot" | |
git add -A | |
git commit -m "Update CDN [skip ci]" -a | |
- name: push changes | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main |