Skip to content

Commit

Permalink
ci: fix release workflow typos (#784)
Browse files Browse the repository at this point in the history
Issue #, if available:
https://github.com/runfinch/finch/actions/runs/7733913260

*Description of changes:*
- Seems like a typo in the release workflow. Since it just ran for the
first time, we only just found it

*Testing done:*



- [x] I've reviewed the guidance in CONTRIBUTING.md


#### License Acceptance

By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache 2.0 license.

Signed-off-by: Justin Alvarez <[email protected]>
  • Loading branch information
pendo324 authored Jan 31, 2024
1 parent 01e2764 commit 598b723
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/upload-msi-to-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ jobs:
aws-region: ${{ secrets.REGION }}
- name: Download installers and dependency source code
run: |
aws s3 cp s3://${{ secrets.INSTALLER_PRIVATE_BUCKET_NAME }}/Finch-${{ get-version-tag.outputs.tag }}.msi Finch-${{ get-version-tag.outputs.tag }}.msi
aws s3 cp s3://${{ secrets.INSTALLER_PRIVATE_BUCKET_NAME }}/Finch-${{ needs.get-version-tag.outputs.tag }}.msi Finch-${{ needs.get-version-tag.outputs.tag }}.msi
- name: Upload installers and dependency source code to release
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
with:
tag_name: ${{ get-version-tag.outputs.tag }}
tag_name: ${{ needs.get-version-tag.outputs.tag }}
files: |
Finch-${{ get-version-tag.outputs.tag }}.msi
Finch-${{ needs.get-version-tag.outputs.tag }}.msi
- name: Delete installers and dependency source code
run: rm -rf Finch-${{ get-version-tag.outputs.tag }}.msi
run: rm -rf Finch-${{ needs.get-version-tag.outputs.tag }}.msi

0 comments on commit 598b723

Please sign in to comment.