diff --git a/.github/workflows/vcpkg_ci_amd64.yml b/.github/workflows/vcpkg_ci_amd64.yml index 5c1840fd..ba25ef8d 100644 --- a/.github/workflows/vcpkg_ci_amd64.yml +++ b/.github/workflows/vcpkg_ci_amd64.yml @@ -185,7 +185,7 @@ jobs: - name: Publish Release Assets if: github.event.release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: ${{ env.ARTIFACT_NAME }}.tar.xz prerelease: ${{ contains(github.ref, 'pre') || contains(github.ref, 'rc') }} diff --git a/.github/workflows/vcpkg_ci_mac.yml b/.github/workflows/vcpkg_ci_mac.yml index 74c232a2..9aa72b87 100644 --- a/.github/workflows/vcpkg_ci_mac.yml +++ b/.github/workflows/vcpkg_ci_mac.yml @@ -129,7 +129,7 @@ jobs: - name: Publish Release Assets if: github.event.release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: ${{ env.ARTIFACT_NAME }}.tar.xz prerelease: ${{ contains(github.ref, 'pre') || contains(github.ref, 'rc') }} diff --git a/.github/workflows/vcpkg_ci_windows.yml b/.github/workflows/vcpkg_ci_windows.yml index d86a5286..b2c2e47f 100644 --- a/.github/workflows/vcpkg_ci_windows.yml +++ b/.github/workflows/vcpkg_ci_windows.yml @@ -124,7 +124,7 @@ jobs: - name: Publish Release Assets if: github.event.release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: ${{ env.ARTIFACT_NAME }} prerelease: ${{ contains(github.ref, 'pre') || contains(github.ref, 'rc') }} diff --git a/.github/workflows/vcpkg_release.yml b/.github/workflows/vcpkg_release.yml index 6807995d..b2cb253e 100644 --- a/.github/workflows/vcpkg_release.yml +++ b/.github/workflows/vcpkg_release.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v4 - name: Create Release id: create_release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: prerelease: ${{ contains(github.ref, 'pre') || contains(github.ref, 'rc') }} token: ${{ secrets.RELEASE_TOKEN }}