From 65c3d4aaeeb15fd7ea383e2aaaae42bd04b99227 Mon Sep 17 00:00:00 2001 From: Lukasz Raczylo Date: Tue, 3 Aug 2021 08:08:14 +0100 Subject: [PATCH] Pin release workflow version to 0.1.5 Current workflow have issues with outdated libraries. --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a3d7f60..79d5a2b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -182,7 +182,7 @@ jobs: echo "$(git log $(git describe --tags --abbrev=0)..HEAD --pretty=format:"%h %s")" > .release_notes - name: Create Release id: create_release - uses: softprops/action-gh-release@v0.1.7 + uses: softprops/action-gh-release@v0.1.5 if: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -200,9 +200,9 @@ jobs: fail-if-no-assets: false tag: v1 assets: 'semver-gen-*' - - name: Create Release + - name: Create Release V1 id: create_release_global - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v0.1.5 if: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}