Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
fetch-depth: 0
- id: gate
name: Check whether a release is needed
uses: metio/ci/needs-release@0723b4d89f3638abaa992a666382b00bb7c45d3d # 2026.7.3153603
uses: metio/ci/needs-release@afbf10fe3c5ceb438a1da090e78cc6c0159c4754 # 2026.7.5093733
with:
paths: src/main/java pom.xml
- id: version
name: Compute the next version
if: steps.gate.outputs.needed == 'true'
uses: metio/ci/calver@0723b4d89f3638abaa992a666382b00bb7c45d3d # 2026.7.3153603
uses: metio/ci/calver@afbf10fe3c5ceb438a1da090e78cc6c0159c4754 # 2026.7.5093733
release:
needs: [prepare]
if: needs.prepare.outputs.needed == 'true'
Expand All @@ -50,10 +50,10 @@
fetch-depth: 0
- id: timestamp
name: Build Timestamp
run: echo "iso8601=$(date --utc --iso-8601=seconds)" >> $GITHUB_OUTPUT

Check warning on line 53 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / github-actions

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:52: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release.yml:53:9: shellcheck reported issue in this script: SC2086:info:1:52: Double quote to prevent globbing and word splitting [shellcheck]
- id: notes
name: Generate Release Notes
uses: metio/ci/release-notes@0723b4d89f3638abaa992a666382b00bb7c45d3d # 2026.7.3153603
uses: metio/ci/release-notes@afbf10fe3c5ceb438a1da090e78cc6c0159c4754 # 2026.7.5093733
with:
version: ${{ needs.prepare.outputs.version }}
previous: ${{ needs.prepare.outputs.previous }}
Expand All @@ -61,7 +61,7 @@
env:
VERSION: ${{ needs.prepare.outputs.version }}
NOTES: ${{ steps.notes.outputs.file }}
run: |

Check failure on line 64 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / github-actions

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC1073:error:1:17: Couldn't parse this here document. Fix to allow more checks [shellcheck] Raw Output: e:.github/workflows/release.yml:64:9: shellcheck reported issue in this script: SC1073:error:1:17: Couldn't parse this here document. Fix to allow more checks [shellcheck]

Check failure on line 64 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / github-actions

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC1072:error:7:1: Here document was not correctly terminated. Fix any mentioned problems and try again [shellcheck] Raw Output: e:.github/workflows/release.yml:64:9: shellcheck reported issue in this script: SC1072:error:7:1: Here document was not correctly terminated. Fix any mentioned problems and try again [shellcheck]

Check failure on line 64 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / github-actions

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC1044:error:1:19: Couldn't find end token `EOF' in the here document [shellcheck] Raw Output: e:.github/workflows/release.yml:64:9: shellcheck reported issue in this script: SC1044:error:1:19: Couldn't find end token `EOF' in the here document [shellcheck]

Check warning on line 64 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / github-actions

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC1009:info:1:1: The mentioned syntax error was in this simple command [shellcheck] Raw Output: i:.github/workflows/release.yml:64:9: shellcheck reported issue in this script: SC1009:info:1:1: The mentioned syntax error was in this simple command [shellcheck]
cat >> "$NOTES" <<EOF

## Usage
Expand Down Expand Up @@ -89,7 +89,7 @@
run: mvn --batch-mode --define newVersion=${{ needs.prepare.outputs.version }} --define generateBackupPoms=false versions:set
- id: deploy-maven
name: Deploy Maven Artifact
run: >

Check failure on line 92 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / github-actions

[actionlint] reported by reviewdog 🐶 property "sha" is not defined in object type {checkout: {conclusion: string; outcome: string; outputs: {string => string}}; gpg: {conclusion: string; outcome: string; outputs: {string => string}}; notes: {conclusion: string; outcome: string; outputs: {string => string}}; pom-version: {conclusion: string; outcome: string; outputs: {string => string}}; setup-java: {conclusion: string; outcome: string; outputs: {string => string}}; timestamp: {conclusion: string; outcome: string; outputs: {string => string}}} [expression] Raw Output: e:.github/workflows/release.yml:92:79: property "sha" is not defined in object type {checkout: {conclusion: string; outcome: string; outputs: {string => string}}; gpg: {conclusion: string; outcome: string; outputs: {string => string}}; notes: {conclusion: string; outcome: string; outputs: {string => string}}; pom-version: {conclusion: string; outcome: string; outputs: {string => string}}; setup-java: {conclusion: string; outcome: string; outputs: {string => string}}; timestamp: {conclusion: string; outcome: string; outputs: {string => string}}} [expression]
mvn
--batch-mode
--activate-profiles release
Expand Down
Loading