fix: Remove old dataset directory (#9) #20
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 workflow will deploy Cloudflare workers to the LIVE environment for commits to the master branch | |
name: Deploy to Cloudflare | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy-json-ld: | |
runs-on: ubuntu-latest | |
name: Deploy jsonld-reverse-proxy | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Publish | |
uses: cloudflare/[email protected] | |
with: | |
apiToken: ${{ secrets.CF_API_TOKEN }} | |
workingDirectory: 'jsonld-reverse-proxy' | |
deploy-website: | |
runs-on: ubuntu-latest | |
name: Deploy website-reverse-proxy | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Publish | |
uses: cloudflare/[email protected] | |
with: | |
apiToken: ${{ secrets.CF_API_TOKEN }} | |
workingDirectory: 'website-reverse-proxy' |