diff --git a/.forgejo/workflows/depoly.yml b/.forgejo/workflows/depoly.yml index a367480..a64b095 100644 --- a/.forgejo/workflows/depoly.yml +++ b/.forgejo/workflows/depoly.yml @@ -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'