diff --git a/.forgejo/workflows/publish.yml b/.forgejo/workflows/publish.yml new file mode 100644 index 0000000..fd9a2e4 --- /dev/null +++ b/.forgejo/workflows/publish.yml @@ -0,0 +1,19 @@ +on: [push] + +jobs: + deploy: + runs-on: docker + env: + CLOUDFLARE_API_TOKEN : ${{ secrets.CLOUDFLARE_API_TOKEN }} + CLOUDFLARE_ACCOUNT_ID : ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} + steps: + - uses: actions/checkout@v3 + + - run: bash fix.sh + + - run: apt update && apt install -y python3-pip + - run: pip install beautifulsoup4 lxml + - run: python soup.py + + - run: npm install -g wrangler + - run: npx wrangler pages deploy public --project-name garden --commit-dirty=true