From f3d8054d2c4f8c6fee1698e1f8ae5ef891cf7e34 Mon Sep 17 00:00:00 2001 From: Jack Matthews Date: Sat, 28 Oct 2023 21:59:00 -0400 Subject: [PATCH] Add deployment workflow --- .github/workflows.deploy.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows.deploy.yaml diff --git a/.github/workflows.deploy.yaml b/.github/workflows.deploy.yaml new file mode 100644 index 0000000..39bd2d4 --- /dev/null +++ b/.github/workflows.deploy.yaml @@ -0,0 +1,17 @@ +name: Deploy + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + name: Deploy + steps: + - uses: actions/checkout@v3 + - name: Deploy + uses: cloudflare/wrangler-action@v3 + with: + apiToken: ${{ secrets.CF_API_TOKEN }}