Skip to content

Commit

Permalink
wip: 🔕 temporary commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tarampampam committed Apr 28, 2024
1 parent d922419 commit b12b0d2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy-website-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ jobs:
env:
PROJECT_NAME: random-user-agent-index
DIST_DIR: ./website/index
ENVIRONMENT: prod # dev|staging|prod
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 }} --env ${{ env.ENVIRONMENT }} --commit-dirty=true
command:
pages deploy ${{ env.DIST_DIR }}
--project-name=${{ env.PROJECT_NAME }}
--branch ${{ env.CF_BRANCH_NAME }}
--commit-dirty=true
8 changes: 6 additions & 2 deletions .github/workflows/deploy-website-sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ jobs:
env:
PROJECT_NAME: random-user-agent-ua-test-sandbox
DIST_DIR: ./website/sandbox
ENVIRONMENT: prod # dev|staging|prod
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 }} --env ${{ env.ENVIRONMENT }} --commit-dirty=true
command:
pages deploy ${{ env.DIST_DIR }}
--project-name=${{ env.PROJECT_NAME }}
--branch ${{ env.CF_BRANCH_NAME }}
--commit-dirty=true

0 comments on commit b12b0d2

Please sign in to comment.