From a54193cd900ff23ed269ad584071d044ed9b86ea Mon Sep 17 00:00:00 2001 From: Kristian Krsnik Date: Thu, 1 Feb 2024 18:38:30 +0100 Subject: [PATCH] try to add artifact to release release --- .github/workflows/AppImage.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/AppImage.yaml b/.github/workflows/AppImage.yaml index 0fde7b2..e6734ac 100644 --- a/.github/workflows/AppImage.yaml +++ b/.github/workflows/AppImage.yaml @@ -3,9 +3,11 @@ name: AppImage for Release on: push: - # Sequence of patterns matched against refs/tags tags: - - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + - "v*.*.*" + +permissions: + contents: write jobs: build: @@ -21,10 +23,10 @@ jobs: with: github_access_token: ${{ secrets.GITHUB_TOKEN }} - - name: build + - name: Build AppImage run: "nix build .#appImage" - - name: Release with Notes + - name: Release uses: softprops/action-gh-release@v1 with: files: ./result/*.AppImage