From 2b934a7b9354445aee90e736668fc60e2dd4f1e5 Mon Sep 17 00:00:00 2001 From: VC Date: Fri, 28 Feb 2025 16:02:27 +0100 Subject: [PATCH] test: ci pipeline --- .gitea/workflows/release.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitea/workflows/release.yml diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml new file mode 100644 index 0000000..bd1b79c --- /dev/null +++ b/.gitea/workflows/release.yml @@ -0,0 +1,26 @@ +--- +name: release + +on: + push: + tags: + - '*' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout main + uses: actions/checkout@v4 + - name: Build only + uses: shalzz/zola-deploy-action@v0.20.0 + env: + BUILD_ONLY: true + - name: Create archive + run: tar -czf public.tar.gz public/ + - name: Do release + uses: ncipollo/release-action@v1 + with: + name: public + artifacts: "public.tar.gz" + allowUpdates: true