Skip to content

Commit fe4f489

Browse files
[HOTFIX] Fix for CI-CD regression
Changes in file .github/workflows/CI-CHGLOG.yml: * hotfix for regression of download-artifacts action logic after version bump
1 parent 5f0cfe2 commit fe4f489

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CI-CHGLOG.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,13 +216,13 @@ jobs:
216216
path: '${{ runner.temp }}/'
217217
artifact-ids: ${{ needs.CHGLOG.outputs.artifact-id }}
218218
repository: reactive-firewall-org/multicast
219+
github-token: ${{ github.token }}
219220
- name: "Move chglog into place"
220221
id: load_chglog_info
221222
if: ${{ always() }}
222223
run: |
223-
mv -vf "${{ runner.temp }}/multicast-chglog-${{ needs.check_build.outputs.sha }}/CHANGELOG.md" "${{ github.workspace }}/CHANGELOG.md" ;
224+
mv -vf "${{ runner.temp }}/CHANGELOG.md" "${{ github.workspace }}/CHANGELOG.md" ;
224225
wait ;
225-
rmdir -v "${{ runner.temp }}/multicast-chglog-${{ needs.check_build.outputs.sha }}" || : ; # remove if able
226226
- name: "Report chglog status"
227227
id: report_status
228228
env:

0 commit comments

Comments
 (0)