ci/depoly: depoly to production if tagging version

This commit is contained in:
thislight 2024-07-14 22:05:12 +08:00
parent e882a8c0e8
commit dd1fca7691
No known key found for this signature in database
GPG key ID: A50F9451AC56A63E

View file

@ -1,5 +1,10 @@
on: ['push']
on:
push:
branches:
- master
tags:
- "v*"
jobs:
depoly:
@ -26,11 +31,19 @@ jobs:
- name: Build Dist
run: pnpm dist
- name: Depoly to Cloudflare
- name: Depoly to Preview
uses: https://github.com/cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy --project-name=tututheapp dist
if: "env.GITHUB_REF_NAME == 'master'"
if: github.event.ref_type == 'branch'
- name: Depoly to Production
uses: https://github.com/cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
command: pages deploy --project-name=tututheapp dist --branch=production
if: github.event.ref_type == 'tag'