-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### 🧹 Chore * add manual docker build action ([#92](#92)) ([a1023ca](a1023ca)) * new release automation (with hotfix) ([#96](#96)) ([2ab8feb](2ab8feb)) * Rename lint and test scripts ([#94](#94)) ([0de4dae](0de4dae))
- Loading branch information
Showing
6 changed files
with
70 additions
and
17 deletions.
There are no files selected for viewing
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,34 @@ | ||
name: 🐳 Build Docker Image | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
type: string | ||
required: true | ||
description: "The ref to build the image from. (usually this is a release tag, e.g. v4.0.1)" | ||
architecture: | ||
type: choice | ||
required: true | ||
default: amd64 | ||
options: | ||
- amd64 | ||
- arm64 | ||
- both | ||
imageTag: | ||
type: string | ||
required: true | ||
description: "The tag for the docker image. (usually a version tag without leading 'v')" | ||
|
||
jobs: | ||
build-docker-image: | ||
name: Build Docker Image for ${{ inputs.imageTag }} | ||
uses: dot-base/.github/.github/workflows/build-docker-image.yml@main | ||
with: | ||
ref: ${{ inputs.ref }} | ||
architecture: ${{ inputs.architecture }} | ||
imageTag: ${{ inputs.imageTag }} | ||
secrets: | ||
GH_BOT_USER: ${{ secrets.GH_BOT_USER }} | ||
GH_BOT_PAT: ${{ secrets.GH_BOT_PAT }} | ||
CR_PAT: ${{ secrets.CR_PAT }} |
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,20 @@ | ||
name: 🚒 Create Hotfix Release PR | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
type: string | ||
description: The hotfix branch with the fix that shall be released. | ||
required: true | ||
default: fix/ | ||
|
||
jobs: | ||
create-release-PR: | ||
name: Create a PR from the hotfix branch into 'release' | ||
uses: dot-base/.github/.github/workflows/create-release-pr.yml@main | ||
with: | ||
branch: ${{ inputs.branch }} | ||
secrets: | ||
GH_BOT_USER: ${{ secrets.GH_BOT_USER }} | ||
GH_BOT_PAT: ${{ secrets.GH_BOT_PAT }} |
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,11 @@ | ||
name: 🔁 Create Sync PR (manual version) | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
create-release-pr: | ||
name: Create Sync PR | ||
uses: dot-base/.github/.github/workflows/create-sync-pr.yml@main | ||
secrets: | ||
GH_BOT_USER: ${{ secrets.GH_BOT_USER }} | ||
GH_BOT_PAT: ${{ secrets.GH_BOT_PAT }} |
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