We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent face276 commit b2a0d29Copy full SHA for b2a0d29
.github/workflows/build.yml
@@ -99,10 +99,10 @@ jobs:
99
compression-level: 9
100
101
- name: 'Create a Release'
102
- if: ${{ github.event_name == 'push' && github.event.ref_name == 'main' }}
+ if: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
103
uses: ncipollo/release-action@main
104
with:
105
allowUpdates : true
106
- commit: ${{ github.event.ref_name }}
+ commit: ${{ github.ref_name }}
107
tag: 'edk2-${{ env.version }}'
108
artifacts: '${{ env.artifact_fd_path }}'
0 commit comments