Skip to content

Commit

Permalink
Fix workflow hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
jfharden committed Jan 29, 2024
1 parent ff23c73 commit 7eb9d14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
run: |
binary_name="bridgeboard-pc-boot-patcher"
dirname="$binary_name-${{ jobs.check-for-release.outputs.version }}-${{ matrix.target }}"
dirname="$binary_name-${{ needs.check-for-release.outputs.version }}-${{ matrix.target }}"
mkdir "$dirname"
if [ "${{ matrix.os }}" = "windows-latest" ]; then
mv "target/${{ matrix.target }}/release/$binary_name.exe" "$dirname"
Expand All @@ -112,8 +112,8 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v1
with:
name: ${{ jobs.check-for-release.outputs.version }}
tag_name: ${{ jobs.check-for-release.outputs.version }}
name: ${{ needs.check-for-release.outputs.version }}
tag_name: ${{ needs.check-for-release.outputs.version }}
generate_release_notes: true
files: |
${{ env.ASSET }}
Expand Down

0 comments on commit 7eb9d14

Please sign in to comment.