-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #868 from assimbly/develop
Update to 5.0.2-SNAPSHOT
- Loading branch information
Showing
152 changed files
with
29,661 additions
and
928 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Release for all repositories | ||
# Run this task when the snapshots are merged into main | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
milestone: | ||
description: 'Milestone to use as version' | ||
type: string | ||
required: true | ||
|
||
workflow_call: | ||
inputs: | ||
milestone: | ||
description: 'Milestone to use as version' | ||
type: string | ||
required: true | ||
|
||
jobs: | ||
call-base-release: | ||
uses: assimbly/base/.github/workflows/release.yml@main | ||
secrets: inherit | ||
with: | ||
branch: 'main' | ||
milestone: ${{ inputs.milestone }} | ||
|
||
call-custom-components-release: | ||
uses: assimbly/custom-components/.github/workflows/release.yml@main | ||
needs: call-base-release | ||
secrets: inherit | ||
with: | ||
branch: 'main' | ||
milestone: ${{ inputs.milestone }} | ||
|
||
call-runtime-release: | ||
uses: assimbly/runtime/.github/workflows/release.yml@main | ||
needs: call-custom-components-release | ||
secrets: inherit | ||
with: | ||
branch: 'main' | ||
milestone: ${{ inputs.milestone }} | ||
|
||
call-gateway-release: | ||
uses: ./.github/workflows/release.yml | ||
needs: call-runtime-release | ||
secrets: inherit | ||
with: | ||
branch: 'main' | ||
milestone: ${{ inputs.milestone }} | ||
tag: ${{inputs.milestone}} | ||
|
||
call-release-notes-drafter: | ||
needs: call-gateway-release | ||
uses: ./.github/workflows/release-drafter.yml | ||
secrets: inherit | ||
with: | ||
branch: 'main' | ||
milestone: ${{ inputs.milestone }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Release Daily Development Snapshot | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
schedule: | ||
- cron: '0 3 * * *' | ||
|
||
jobs: | ||
getversion: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
milestone: ${{ steps.gradle-version.outputs.milestone }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '21' | ||
distribution: 'temurin' | ||
|
||
- name: Get Gradle Project Version | ||
id: gradle-version | ||
run: | | ||
VERSION=$(./gradlew -q printVersion) | ||
echo "Gradle version: $VERSION" | ||
echo "milestone=$VERSION" >> "$GITHUB_OUTPUT" | ||
call-release: | ||
needs: getversion | ||
uses: ./.github/workflows/release.yml | ||
secrets: inherit | ||
with: | ||
branch: 'develop' | ||
milestone: ${{needs.getversion.outputs.milestone}} | ||
tag: 'development' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Release Daily Next Snapshot | ||
|
||
on: | ||
workflow_dispatch: | ||
# schedule: | ||
# - cron: '0 2 * * *' | ||
|
||
jobs: | ||
getversion: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
milestone: ${{ steps.gradle-version.outputs.milestone }} | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '21' | ||
distribution: 'temurin' | ||
|
||
- name: Get Gradle Project Version | ||
id: gradle-version | ||
run: | | ||
VERSION=$(./gradlew -q printVersion) | ||
echo "Gradle version: $VERSION" | ||
echo "milestone=$VERSION" >> "$GITHUB_OUTPUT" | ||
call-release: | ||
needs: getversion | ||
uses: ./.github/workflows/release.yml | ||
secrets: inherit | ||
with: | ||
branch: 'next' | ||
milestone: ${{needs.getversion.outputs.milestone}} | ||
tag: 'next' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.