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 f646f1f commit b926627
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/github-actions-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ jobs:
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Archive Release
- name: Archive
uses: thedoctor0/zip-release@master
with:
type: 'tar'
directory: 'T2'
filename: '/tmp/T2.tar.gz'
filename: 'T2.tar.gz'
exclusions: '*.git*'
- uses: ncipollo/release-action@v1
- name : Release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
artifacts: "/tmp/T2.tar.gz"
artifacts: "T2.tar.gz"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b926627

Please sign in to comment.