Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rundeck-plugins/nixy-step-plugins#18: Fix assets name to match content from inside released artifact #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./command/build/libs/command-v${{ steps.get_version.outputs.VERSION }}.zip
asset_name: command-${{ steps.get_version.outputs.VERSION }}.zip
asset_name: command-v${{ steps.get_version.outputs.VERSION }}.zip
asset_content_type: application/zip

- name: Upload File Plugin (zip)
Expand All @@ -54,7 +54,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./file/build/libs/file-v${{ steps.get_version.outputs.VERSION }}.zip
asset_name: file-${{ steps.get_version.outputs.VERSION }}.zip
asset_name: file-v${{ steps.get_version.outputs.VERSION }}.zip
asset_content_type: application/zip

- name: Upload local-script Plugin (zip)
Expand All @@ -65,7 +65,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./local-script/build/libs/local-script-v${{ steps.get_version.outputs.VERSION }}.zip
asset_name: local-script-${{ steps.get_version.outputs.VERSION }}.zip
asset_name: local-script-v${{ steps.get_version.outputs.VERSION }}.zip
asset_content_type: application/zip

- name: Upload waitfor Plugin (zip)
Expand All @@ -76,5 +76,5 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./waitfor/build/libs/waitfor-v${{ steps.get_version.outputs.VERSION }}.zip
asset_name: waitfor-${{ steps.get_version.outputs.VERSION }}.zip
asset_content_type: application/zip
asset_name: waitfor-v${{ steps.get_version.outputs.VERSION }}.zip
asset_content_type: application/zip