diff --git a/.forgejo/workflows/publish.yml b/.forgejo/workflows/publish.yml new file mode 100644 index 0000000..be4a57c --- /dev/null +++ b/.forgejo/workflows/publish.yml @@ -0,0 +1,20 @@ +on: [push] + +jobs: + build-link: + steps: + - uses: actions/checkout@v3 + - run: bash fix.sh + + render-links: + container: + image: python:3.10.6 + commands: + - pip install beautifulsoup4 lxml + - python soup.py + + deploy: + steps: + - run: npm install -g wrangler + - run: npx wrangler pages deploy public --project-name garden --commit-dirty=true +