From 1c8814a07e95d65a57db5897dd40a30400960157 Mon Sep 17 00:00:00 2001 From: Tim Pilius Date: Sun, 26 May 2024 15:50:29 -0400 Subject: [PATCH] a --- .github/workflows/release-publish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index bc2bba05..a43e1f6d 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -56,8 +56,7 @@ jobs: run: | version=$(grep -Po '(?<=)(.*?)(?=)' $PROJECT_NAME/$PROJECT_NAME.csproj); echo "version=$version" >> $GITHUB_OUTPUT; - - run: apt-get update - - run: apt-get install zip -y + - run: apt-get update && apt-get install zip -y - name: Publish run: > version=${{ steps.vars.outputs.version }} @@ -78,7 +77,7 @@ jobs: - name: Upload uses: actions/upload-artifact@v3 with: - name: ${{ env.PROJECT_NAME }}-${{ steps.vars.outputs.version }}-${{ matrix.runtime }} + name: $PROJECT_NAME-${{ steps.vars.outputs.version }}-${{ matrix.runtime }} path: publish/ if-no-files-found: error - name: Create Release