Skip to content
Draft
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/csharp-app-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ on:
description: "The current released version."
value: ${{ jobs.release-checks.outputs.version }}

concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:
release-checks:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/csharp-app-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ on:
description: "The current released version."
value: ${{ jobs.build.outputs.version }}

concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:
checks:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/maven-app-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ on:
version:
description: "The current released version."
value: ${{ jobs.release-checks.outputs.version }}

concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:
release-checks:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/maven-app-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ on:
version:
description: "The current released version."
value: ${{ jobs.build-app.outputs.version }}

concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:
build-app:
runs-on: ubuntu-latest
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/maven-lib-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ on:
DOCS_REPO_EVOLVE_WORKFLOW:
required: true


concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:
release-checks:
Expand Down Expand Up @@ -251,7 +253,9 @@ jobs:
if: steps.build.outcome == 'failure'
run: |
git push origin -d release
echo "There was an error in the mvn deploy command above."
echo "##########################################################################"
echo "# There was an error in the mvn deploy command above (Mvn Package Step) #"
echo "##########################################################################"
Copy link
Copy Markdown
Contributor Author

@alourie alourie Apr 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

eh, this sneaked in after playing with clearer error messages. I bet no one will notice.

exit 1
shell: bash

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/maven-lib-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ on:
LC_URL:
required: false

concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:

check-docs:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/npm-app-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ on:
version:
description: "The current released version."
value: ${{ jobs.release-checks.outputs.version }}

concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:
release-checks:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/npm-app-snapshot-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ on:
version:
description: "The current released version."
value: ${{ jobs.build-artifact.outputs.version }}

concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:
build-artifact:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/npm-lib-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ on:
LC_URL:
required: false

concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:
release-checks:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/npm-lib-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ on:
LC_URL:
required: false

concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:
build-artifact:
runs-on: ubuntu-latest
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/python-lib-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ on:
DOCS_REPO_EVOLVE_WORKFLOW:
required: true


concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:
release-checks:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/python-lib-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ on:
PYPI_PASSWORD:
required: false

concurrency:
group: release-snapshot
cancel-in-progress: false

jobs:

run-checks:
Expand Down