wip: 🔕 temporary commit #7
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: 🚀 Deploy the sandbox website | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: [rewrite] #[master, main] # TODO: change this | |
tags-ignore: ['**'] | |
paths: [website/sandbox/**, .github/workflows/deploy-website-sandbox.yml] | |
concurrency: | |
group: ${{ github.ref }}-sandbox-website | |
cancel-in-progress: true | |
jobs: | |
publish: | |
name: 🚀 Publish the site | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cloudflare/wrangler-action@v3 | |
env: | |
PROJECT_NAME: random-user-agent-ua-test-sandbox | |
DIST_DIR: ./website/sandbox | |
CF_BRANCH_NAME: main # to deploy as "Production" environment on Cloudflare Pages | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_PAGES_DEPLOY_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
command: | |
pages deploy ${{ env.DIST_DIR }} | |
--project-name=${{ env.PROJECT_NAME }} | |
--branch ${{ env.CF_BRANCH_NAME }} | |
--commit-dirty=true |