-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16f86e5
commit 7de1f17
Showing
2 changed files
with
54 additions
and
0 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,27 @@ | ||
# Workflow responsible for the | ||
# development release processes. | ||
name: Build-Push-Dev-Image | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
- develop-v1 | ||
- ghactions | ||
paths-ignore: | ||
- README.md | ||
- .old_cicd/* | ||
- .github/* | ||
- .github/workflows/* | ||
- LICENSE | ||
- .gitignore | ||
- .dockerignore | ||
- .githooks | ||
# Do not build another image on a pull request. | ||
# Any push to develop will trigger a new build however. | ||
pull_request: | ||
branches-ignore: | ||
- '*' | ||
jobs: | ||
build-push-dev-image: | ||
uses: helxplatform/helx-github-actions/.github/workflows/build-push-dev-image.yml@main | ||
secrets: inherit |
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,27 @@ | ||
# Workflow responsible for the | ||
# major release processes. | ||
# | ||
|
||
name: Build-Push-Release | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- master-v1 | ||
- ghactions | ||
paths-ignore: | ||
- README.md | ||
- .old_cicd/* | ||
- .github/* | ||
- .github/workflows/* | ||
- LICENSE | ||
- .gitignore | ||
- .dockerignore | ||
- .githooks | ||
tags-ignore: | ||
- 'v[0-9]+.[0-9]+.*' | ||
- '*' | ||
jobs: | ||
build-push-release: | ||
uses: helxplatform/helx-github-actions/.github/workflows/build-push-release.yml@main | ||
secrets: inherit |