Compare commits

...

2 commits

Author SHA1 Message Date
thislight
cac01f1dab
start the first version
All checks were successful
/ depoly (push) Successful in 59s
2024-07-14 22:06:12 +08:00
thislight
dd1fca7691
ci/depoly: depoly to production if tagging version 2024-07-14 22:05:12 +08:00
2 changed files with 17 additions and 4 deletions

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'

View file

@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package",
"name": "tutu",
"version": "0.1.0",
"version": "1.0.0",
"description": "",
"private": true,
"type": "module",