Skip to content

Commit

Permalink
Update dispatch.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
dmzoneill committed Apr 2, 2024
1 parent ed55ae0 commit 7da3eb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dispatch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ jobs:
uses: actions/upload-artifact@v1.0.0
with:
name: ${{ env.PACKAGE_NAME }}-0.${{ env.PACKAGE_VERSION }}.rpm
path: ./rpmbuild/RPMS/x86_64/${{ env.PACKAGE_NAME }}.${{ env.PACKAGE_VERSION }}-1.x86_64.rpm
path: ./rpmbuild/RPMS/x86_64/${{ env.PACKAGE_NAME }}-${{ env.PACKAGE_VERSION }}-1.x86_64.rpm

- name: Create GitHub release
id: create_release
Expand All @@ -1012,7 +1012,7 @@ jobs:
prerelease: false

- name: Set asset path
run: echo "ASSET_PATH=./rpmbuild/RPMS/x86_64/${{ env.PACKAGE_NAME }}.${{ env.PACKAGE_VERSION }}-1.rpm" >> $GITHUB_ENV
run: echo "ASSET_PATH=./rpmbuild/RPMS/x86_64/${{ env.PACKAGE_NAME }}-${{ env.PACKAGE_VERSION }}-1.x86_64.rpm" >> $GITHUB_ENV

- name: Upload RPM package as release asset
id: upload-release-asset
Expand All @@ -1022,7 +1022,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ env.ASSET_PATH }}
asset_name: ${{ env.PACKAGE_NAME }}.${{ env.PACKAGE_VERSION }}-1.x86_64.rpm
asset_name: ${{ env.PACKAGE_NAME }}-${{ env.PACKAGE_VERSION }}-1.x86_64.rpm
asset_content_type: application/octet-stream

npmjs:
Expand Down

0 comments on commit 7da3eb1

Please sign in to comment.