Skip to content

Commit fe47c0c

Browse files
committed
Improve release job step naming
1 parent 5c90d5b commit fe47c0c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/main.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
nix copy -v --to "s3://${NIX_CACHE_BUCKET_NAME}/cache?region=${NIX_CACHE_BUCKET_REGION}&compression=zstd&parallel-compression=true" "${NIX_OUTPUT}"
4848
4949
release:
50-
name: Release ${{ github.event.inputs.version }}
50+
name: Release
5151
if: github.event.inputs.version
5252
needs: [build]
5353
runs-on: [self-hosted, nix, general, arm64-linux, small]
@@ -57,15 +57,13 @@ jobs:
5757
steps:
5858
- uses: actions/checkout@v4
5959

60-
- name: Set version
61-
if: github.event.inputs.version
60+
- name: Set version to ${{ github.event.inputs.version }}
6261
run: ./cli.sh set_version "${{ github.event.inputs.version }}"
6362

6463
- name: Publish to JSR
65-
if: github.event.inputs.version
6664
run: ./cli.sh jsr_publish
6765

68-
- name: Release
66+
- name: Release ${{ github.event.inputs.version }}
6967
env:
7068
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7169
run: ./cli.sh create_release "${{ github.event.inputs.version }}"

0 commit comments

Comments
 (0)