diff --git a/.github/workflows/deploy-beta.yaml b/.github/workflows/deploy-beta.yaml deleted file mode 100644 index a88883d..0000000 --- a/.github/workflows/deploy-beta.yaml +++ /dev/null @@ -1,33 +0,0 @@ -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 }} diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 7820716..12fa287 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -4,6 +4,7 @@ on: push: branches: - main + - beta jobs: deploy: