Skip to content

Commit

Permalink
Include release version in file name
Browse files Browse the repository at this point in the history
  • Loading branch information
cheshire137 committed Nov 26, 2024
1 parent 35da1b9 commit 98c1022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
run: bundle install

- name: Build gem
run: gem build project_pull_mover.gemspec -o project_pull_mover.gem
run: gem build project_pull_mover.gemspec -o project_pull_mover-${{ github.event.inputs.release_tag }}.gem

- name: Create release
uses: softprops/action-gh-release@v2
with:
files: project_pull_mover.gem
files: project_pull_mover-${{ github.event.inputs.release_tag }}.gem
tag_name: ${{ github.event.inputs.release_tag }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 98c1022

Please sign in to comment.