From 5ca55f1cd6189997d62caa3651b84b08e6ff5401 Mon Sep 17 00:00:00 2001 From: Gonzalo Exequiel Pedone Date: Fri, 30 Sep 2022 16:51:59 -0300 Subject: [PATCH] Updated softprops/action-gh-release version. --- .github/workflows/linux.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 4142323..5b1a222 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -155,17 +155,17 @@ jobs: chmod +x ports/ci/linux/deploy.sh ./ports/ci/linux/deploy.sh - name: Release Upload - uses: softprops/action-gh-release@v0.1.6 + uses: softprops/action-gh-release@v1 if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.upload }} with: files: packages-v4.9/* env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Daily Build Upload - uses: softprops/action-gh-release@v0.1.6 + uses: softprops/action-gh-release@v1 if: ${{ !startsWith(github.ref, 'refs/tags/') && matrix.upload }} with: - body: "${{ github.event.head_commit.message }} (commit: ${{ github.sha }})" + body: "${{ github.event.head_commit.message }} (commit: ${{ github.sha }})
**Note**: Ignore the commit information of the tag, the files in the release keep updating with every new build, these packages were built from ${{ github.sha }} commit." prerelease: true files: packages-v4.9/* name: Daily Build