From 2dc2f36f7340edc2e5c4368c14fe65dd34a23455 Mon Sep 17 00:00:00 2001 From: Manuel Date: Fri, 17 Nov 2023 20:14:35 +0100 Subject: [PATCH] Update main.yml: use the same action as in sqlitebrowser --- .github/workflows/main.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 125e708..51a4b49 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -57,13 +57,9 @@ jobs: - name: Build run: alr --non-interactive build - name: Build AppImage - run: VERSION=${GITHUB_BASE_REF:-${GITHUB_REF#refs/heads/}} make AppImage - - name: Create Release - uses: ncipollo/release-action@v1 + run: VERSION=$(printf "dev-`git -C . rev-parse --short HEAD`") make AppImage + - name: Upload artifacts + uses: actions/upload-artifact@v3 with: - allowUpdates: True - tag: continuous - name: Continuous build - prerelease: True - artifacts: "Open_URL*.AppImage" - token: ${{ secrets.GITHUB_TOKEN }} + name: build-artifacts + path: Open_URL*.AppImage