From 753097953a3082f5fc5637da4db3272f5894e0e3 Mon Sep 17 00:00:00 2001 From: niklascfw Date: Tue, 3 Feb 2026 17:59:44 +0100 Subject: [PATCH] Updated Workflow --- .github/workflows/build-all.yml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 1b5f40b..7eff34e 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -2,13 +2,11 @@ name: Build All on: push: - branches: [main, master] - pull_request: - branches: [main, master] - workflow_dispatch: + tags: + - 'v*' jobs: - build: + build-and-release: runs-on: ubuntu-latest steps: - name: Checkout @@ -17,8 +15,13 @@ jobs: - name: Build all variants run: bash scripts/build-all.sh - - name: Upload build artifacts - uses: actions/upload-artifact@v3 + - name: Create Release + uses: softprops/action-gh-release@v1 with: - name: omninx-packs-${{ github.sha }} - path: output/ + files: | + output/OmniNX-Light-*.zip + output/OmniNX-Standard-*.zip + output/OmniNX-OC-*.zip + generate_release_notes: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}