Skip to content

Commit

Permalink
Don't use ref/ in release name.
Browse files Browse the repository at this point in the history
  • Loading branch information
r4um authored Mar 23, 2024
1 parent 4853ca2 commit 55637ff
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ jobs:
lein bin
lein uberjar
- name: Extract version from tag
id: extract_version
run: echo "::set-output name=version::${GITHUB_REF#refs/tags/}"

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
release_name: Release ${{ steps.extract_version.outputs.version }}
draft: false
prerelease: false

- name: Extract version from tag
id: extract_version
run: echo "::set-output name=version::${GITHUB_REF#refs/tags/}"


- name: Upload uberjar
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit 55637ff

Please sign in to comment.