From 79ec0b94064ca756a11b38864f5a2a109be0c635 Mon Sep 17 00:00:00 2001 From: Gonzalo Exequiel Pedone Date: Tue, 2 Nov 2021 16:03:51 -0300 Subject: [PATCH] Fixed packages upload. --- .github/workflows/linux-mingw.yml | 4 ++-- .github/workflows/mac.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux-mingw.yml b/.github/workflows/linux-mingw.yml index 209a37b..f6738f3 100644 --- a/.github/workflows/linux-mingw.yml +++ b/.github/workflows/linux-mingw.yml @@ -89,14 +89,14 @@ jobs: chmod +x ports/ci/linux-mingw/deploy.sh ./ports/ci/linux-mingw/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/') }} with: files: packages/windows-gcc/* 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/') }} with: body: "${{ github.event.head_commit.message }} (commit: ${{ github.sha }})" diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 818cf91..864b8f0 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -40,14 +40,14 @@ jobs: chmod +x ports/ci/mac/deploy.sh ./ports/ci/mac/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/') }} with: files: packages/mac/* 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/') }} with: body: "${{ github.event.head_commit.message }} (commit: ${{ github.sha }})"