From 9cc91b164f1a0816365d81e9e249630a64e36bea Mon Sep 17 00:00:00 2001 From: Gustavo Cunha Date: Sat, 14 Sep 2024 10:00:10 +0200 Subject: [PATCH] FIX: Release action relies on it's own input instead of checkout code --- .github/workflows/_release.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index a993f5a..3c04b2b 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -18,13 +18,9 @@ jobs: permissions: contents: write steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - ref: ${{ inputs.reference }} - - name: Create release uses: ncipollo/release-action@v1 with: generateReleaseNotes: true tag: ${{ inputs.tag }} + commit: ${{ inputs.reference }}