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 }})"