Skip to content

Commit

Permalink
fixing tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
carefulcomputer committed Oct 11, 2021
1 parent 3e94e0b commit 5d95aa4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/github-actions-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ jobs:
directory: 'T2'
filename: '/tmp/T2.tar.gz'
exclusions: '*.git*'
- name : generate hash
id : hashgenerator
run: md5sum /tmp/T2.tar.gz | awk '{print $1}' > /tmp/md5sum.txt
- name : Release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
artifacts: "/tmp/T2.tar.gz"
artifacts: "/tmp/T2.tar.gz,/tmp/md5sum.txt"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5d95aa4

Please sign in to comment.