Skip to content

Commit

Permalink
🤡 Fix workflow again
Browse files Browse the repository at this point in the history
  • Loading branch information
XiangNorth committed Sep 1, 2023
1 parent 169d0f3 commit 7a7eef9
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,16 @@ jobs:
id: get-current-date
run: |
echo "current_date=$(date +'%y%m%d')" >> $GITHUB_OUTPUT
shell: bash
- name: Create ZIP archive
run: |
# Create a ZIP archive of the EFI folder
zip -r EFI-${{ github.ref }}-${{ steps.get-current-date.outputs.current_date }}.zip ./EFI
working-directory: ${{ github.workspace }}
zip -r EFI-${{ github.action_ref }}-${{ steps.get-current-date.outputs.current_date }}.zip ./EFI
- name: Generate Release Notes
id: generate-release-notes
run: |
RELEASE_NOTES=$(git log --merges --oneline --format="- %s (%h)" $(git describe --tags --abbrev=0)..HEAD)
echo "release_notes=$RELEASE_NOTES" >> $GITHUB_OUTPUT
shell: bash
- name: Release Asset
id: upload-release-asset
Expand Down

0 comments on commit 7a7eef9

Please sign in to comment.