diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e485bec..092d064 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/v') id: create_release @@ -37,7 +37,7 @@ jobs: Invoke-Expression ((New-Object System.Net.WebClient).DownloadString("$env:BOOTSTRAP_URL")) & "$env:BUILD_SCRIPT" - name: Upload release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/v') with: tag_name: ${{ needs.create_release.outputs.tag-name }} @@ -63,7 +63,7 @@ jobs: curl -f -s -L "$BOOTSTRAP_URL" | bash -x $BUILD_SCRIPT - name: Upload release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/v') with: tag_name: ${{ needs.create_release.outputs.tag-name }} @@ -90,7 +90,7 @@ jobs: cd projects/macosx/gmake gmake config=release_x86_64 - name: Upload release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/v') with: tag_name: ${{ needs.create_release.outputs.tag-name }}