Skip to content

Commit

Permalink
Merge pull request #18 from carnegierobotics/v1.1.4/main
Browse files Browse the repository at this point in the history
V1.1.4/main
  • Loading branch information
M-Gjerde authored May 6, 2024
2 parents 491514c + bf54181 commit 95c7836
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
- name: Package
working-directory: ${{github.workspace}}/build
run: dpkg-deb --build --root-owner-group ${{ needs.VersionJob.outputs.install_path }}
run: dpkg-deb --build --root-owner-group ${{ needs.VersionJob.outputs.install_path }}_ubuntu20_04.deb

- name: Upload Release Asset
id: upload-release-asset
Expand All @@ -215,8 +215,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.ReleaseJob.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: ./build/${{ needs.VersionJob.outputs.install_path }}.deb
asset_name: ${{ needs.VersionJob.outputs.install_path }}.deb
asset_path: ./build/${{ needs.VersionJob.outputs.install_path }}_ubuntu20_04.deb
asset_name: ${{ needs.VersionJob.outputs.install_path }}_ubuntu20_04.deb
asset_content_type: application/zip

BuildUbuntu22:
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
- name: Package
working-directory: ${{github.workspace}}/build
run: dpkg-deb --build --root-owner-group ${{ needs.VersionJob.outputs.install_path }}
run: dpkg-deb --build --root-owner-group ${{ needs.VersionJob.outputs.install_path }}_ubuntu22_04.deb

- name: Upload Release Asset
id: upload-release-asset
Expand All @@ -281,8 +281,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.ReleaseJob.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: ./build/${{ needs.VersionJob.outputs.install_path }}.deb
asset_name: ${{ needs.VersionJob.outputs.install_path }}.deb
asset_path: ./build/${{ needs.VersionJob.outputs.install_path }}_ubuntu22_04.deb
asset_name: ${{ needs.VersionJob.outputs.install_path }}_ubuntu22_04.deb
asset_content_type: application/zip


Expand Down

0 comments on commit 95c7836

Please sign in to comment.