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
This commit is contained in:
parent
6e9e67d5c6
commit
8902b6d09e
1 changed files with 3 additions and 2 deletions
5
.github/workflows/create-release.yml
vendored
5
.github/workflows/create-release.yml
vendored
|
|
@ -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/*"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue