Remove email #28
Workflow file for this run
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: Release | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18.2.x | |
- run: npm install | |
- run: npm run build | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: out | |
path: ./out | |
publish: | |
name: Publish | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18.2.x | |
- uses: actions/download-artifact@v1 | |
with: | |
name: out | |
path: ./out | |
- run: aws s3 cp ./out s3://${{ secrets.AWS_BUCKET }} --recursive | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: us-east-1 | |
- run: |+ | |
curl --silent --request POST \ | |
--url https://api.cloudflare.com/client/v4/zones/${{ secrets.CF_ZONE_ID }}/purge_cache \ | |
--header 'Authorization: Bearer ${{ secrets.CF_API_KEY }}' \ | |
--header 'Content-Type: application/json' \ | |
--header 'X-Auth-Email: ${{ secrets.CF_API_EMAIL }}' \ | |
--data '{"purge_everything":true}' |