From 8902b6d09ef0fd234d72a953b50588f810c0ca87 Mon Sep 17 00:00:00 2001 From: ogabrielluiz Date: Tue, 28 May 2024 19:24:52 -0300 Subject: [PATCH] chore(create-release.yml): rename job name to 'Create Release Job' for clarity chore(create-release.yml): rename step name to 'Download Artifact' for better readability chore(create-release.yml): rename step name to 'Create Release Notes' for better understanding of the action's purpose --- .github/workflows/create-release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index af3fef8e9..04cff5d8e 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -15,14 +15,15 @@ on: - main jobs: create_release: - name: Create Release + name: Create Release Job runs-on: ubuntu-latest steps: - uses: actions/download-artifact@v4 + name: Download Artifact with: name: dist${{ inputs.release_type }} path: dist - - name: Create Release + - name: Create Release Notes uses: ncipollo/release-action@v1 with: artifacts: "dist/*"