Skip to content

Commit

Permalink
🤡 Fix workflow with brain
Browse files Browse the repository at this point in the history
  • Loading branch information
XiangNorth committed Sep 1, 2023
1 parent 95366e6 commit 97fa2f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Create ZIP archive
run: |
zip -r EFI-${{ github.action_ref }}-${{ steps.get-current-date.outputs.current_date }}.zip ./EFI
zip -r EFI-${{ github.ref_name }}-${{ steps.get-current-date.outputs.current_date }}.zip ./EFI
- name: Generate Release Notes
id: generate-release-notes
Expand All @@ -34,6 +34,6 @@ jobs:
id: upload-release-asset
uses: softprops/action-gh-release@v1
with:
name: Release ${{ github.action_ref }}
name: Release ${{ github.ref_name }}
body: ${{ steps.generate-release-notes.outputs.release_notes }}
files: EFI-${{ github.action_ref }}-${{ steps.get-current-date.outputs.current_date }}.zip
files: EFI-${{ github.ref_name }}-${{ steps.get-current-date.outputs.current_date }}.zip

0 comments on commit 97fa2f2

Please sign in to comment.