Skip to content

Commit

Permalink
Fixed release asset name (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
apgrucza authored May 29, 2020
1 parent ff883df commit dd7fd03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./distributions/okta_native/okta_native.zip
asset_name: okta_native_${{ github.event.release.tag_name }}.zip
asset_name: okta_native_${GITHUB_REF#refs/tags/}.zip
asset_content_type: application/zip
- name: Upload rotate_key_pair
uses: actions/upload-release-asset@v1
Expand All @@ -50,5 +50,5 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./distributions/rotate_key_pair/rotate_key_pair.zip
asset_name: rotate_key_pair_${{ github.event.release.tag_name }}.zip
asset_name: rotate_key_pair_${GITHUB_REF#refs/tags/}.zip
asset_content_type: application/zip

0 comments on commit dd7fd03

Please sign in to comment.