diff --git a/.github/workflows/release-nightly-latest.yml b/.github/workflows/release-nightly-latest.yml index e903c5b..abe8c14 100644 --- a/.github/workflows/release-nightly-latest.yml +++ b/.github/workflows/release-nightly-latest.yml @@ -67,18 +67,19 @@ jobs: if_no_artifact_found: fail # remove .zip file extension - run: for f in *.zip; do unzip "$f"; rm "$f"; done - - run: echo "" | tee -a changelog.txt - - run: echo "## Checksums" | tee -a changelog.txt - - run: echo "" | tee -a changelog.txt - - run: echo '```' | tee -a changelog.txt - - run: sha256sum * | tee -a changelog.txt - - run: echo '```' | tee -a changelog.txt - - run: echo "" | tee -a changelog.txt - - run: echo '```' | tee -a changelog.txt - - run: file * | tee -a changelog.txt - - run: echo '```' | tee -a changelog.txt - - run: echo "" | tee -a changelog.txt - - run: cat docs/RELEASE.md changelog.txt > RELEASE.md + - run: cp changelog.txt changelog-java22.txt + - run: echo "" | tee -a changelog-java22.txt + - run: echo "## Checksums" | tee -a changelog-java22.txt + - run: echo "" | tee -a changelog-java22.txt + - run: echo '```' | tee -a changelog-java22.txt + - run: sha256sum * | tee -a changelog-java22.txt + - run: echo '```' | tee -a changelog-java22.txt + - run: echo "" | tee -a changelog-java22.txt + - run: echo '```' | tee -a changelog-java22.txt + - run: file * | tee -a changelog-java22.txt + - run: echo '```' | tee -a changelog-java22.txt + - run: echo "" | tee -a changelog-java22.txt + - run: cat docs/RELEASE.md changelog-java22.txt > RELEASE.md - name: Upload artifacts uses: ncipollo/release-action@v1 with: diff --git a/.github/workflows/release-nightly.yml b/.github/workflows/release-nightly.yml index b2188e3..83694c6 100644 --- a/.github/workflows/release-nightly.yml +++ b/.github/workflows/release-nightly.yml @@ -61,7 +61,7 @@ jobs: uses: dawidd6/action-download-artifact@v3 with: skip_unpack: true - workflow: ant-latest.yml + workflow: ant.yml if_no_artifact_found: fail # remove .zip file extension - run: for f in *.zip; do unzip "$f"; rm "$f"; done