From eca4344f2e39b95b9c4a94d7d6f6e8a71867bd95 Mon Sep 17 00:00:00 2001 From: chand1012 Date: Sun, 18 Feb 2024 23:41:32 -0500 Subject: [PATCH] Add deployment --- .github/workflows/deploy.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..7cb6ab9 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,18 @@ +name: Deploy + +on: + push: + # tag push + tags: + - 'v*.*.*' + +jobs: + deploy: + runs-on: ubuntu-latest + name: Deploy + steps: + - uses: actions/checkout@v3 + - name: Deploy + uses: cloudflare/wrangler-action@v3 + with: + apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}