From 63bb551d55fafd3b1805685a28f3c30f625adc42 Mon Sep 17 00:00:00 2001 From: SouthFox Date: Tue, 14 May 2024 23:17:11 +0800 Subject: [PATCH] [cicd] add forgejo action for build --- .forgejo/workflows/publish.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .forgejo/workflows/publish.yml 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 +