Skip to content

Commit

Permalink
add step.with
Browse files Browse the repository at this point in the history
  • Loading branch information
pogi7 committed Dec 9, 2022
1 parent 0d592bf commit 1509ba9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/workbench_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@ jobs:
# ${{ github.ref_name }} is most recent tag name. For workflows triggered by push, this is the branch or tag ref that was pushed.
# https://docs.github.com/en/actions/learn-github-actions/contexts
uses: softprops/action-gh-release@v1
tag_name: ${{ github.ref_name }}
files: ${{ env.ZIP_PRODUCTS_PATH }}
with:
name: ${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
files: ${{ env.ZIP_PRODUCTS_PATH }}
if: ${{ github.ref_type == 'tag' }} # Run job on tag only
env:
GITHUB_TOKEN: ${{ secrets.ACTIONS_TOKEN }}
Expand Down

0 comments on commit 1509ba9

Please sign in to comment.