From 9e3e7392e27c1526359732ce22534eb94e7840f1 Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Sun, 29 Jun 2025 13:52:25 +0200 Subject: [PATCH] chore: add semver workflows --- .forgejo/workflows/semver.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .forgejo/workflows/semver.yaml diff --git a/.forgejo/workflows/semver.yaml b/.forgejo/workflows/semver.yaml new file mode 100644 index 0000000..cc0a6d9 --- /dev/null +++ b/.forgejo/workflows/semver.yaml @@ -0,0 +1,20 @@ +name: Release + +on: + push: + branches: + - main + +jobs: + release: + runs-on: docker + steps: + - uses: actions/checkout@v2 + - uses: https://git.aquila-consortium.org/guilhem_lavaux/setup-rust-toolchain-forge@v1.12.0-forge + - run: npm install + - run: npm run release + env: + CI: true + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} + GITEA_URL: ${{ secrets.GITEA_URL }} +