From 9e0f08f62a38b17a09ce5b8086824cb8cf963c76 Mon Sep 17 00:00:00 2001 From: Quentin Millardet Date: Thu, 8 May 2025 23:36:06 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20la=20cr=C3=A9ation=20automatique?= =?UTF-8?q?=20de=20la=20nouvelle=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/release.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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..af02dce --- /dev/null +++ b/.gitea/workflows/release.yml @@ -0,0 +1,30 @@ +name: Publish + +on: + push: + tags: + - '*' + +jobs: + build: + name: Publish binaries + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Upload fseq to release + uses: svenstaro/upload-release-action@v2 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: White-light.fseq + asset_name: White-light.fseq + tag: ${{ github.ref }} + overwrite: true + - name: Upload wav to release + uses: svenstaro/upload-release-action@v2 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: White-light.wav + asset_name: White-light.wav + tag: ${{ github.ref }} + overwrite: true \ No newline at end of file