Skip to content

Commit

Permalink
Add beta deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
lewish committed May 29, 2024
1 parent c031874 commit f72b259
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/deploy-beta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Deploy

on:
push:
branches:
- beta

jobs:
deploy:
name: Build and deploy
runs-on: ubuntu-latest
environment: deploy

steps:
# Checks out a copy of your repository.
- name: Checkout code
uses: actions/checkout@v2

# Builds code using bazelisk and copies the site folder out of the bazel symlinked dir.
- name: Build the site
uses: "docker://mattinsler/bazelisk:latest"
with:
args: bash -c "bazel build site/... && cp -r --dereference bazel-bin/site ./deploy"

# Deploy the site to Cloudflare.
- name: Publish
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: 4aa13cc00192d0927df8194260cb2ce8
projectName: asciiflow-beta
directory: ./deploy
gitHubToken: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f72b259

Please sign in to comment.