This commit is contained in:
parent
1b2a137089
commit
503d38aad0
1 changed files with 19 additions and 0 deletions
19
.forgejo/workflows/publish.yml
Normal file
19
.forgejo/workflows/publish.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
on: [push]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CLOUDFLARE_API_TOKEN : ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||
CLOUDFLARE_ACCOUNT_ID : ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- run: bash fix.sh
|
||||
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.10.14'
|
||||
|
||||
- run: npm install -g wrangler
|
||||
- run: npx wrangler pages deploy public --project-name garden --commit-dirty=true
|
Loading…
Reference in a new issue