first test #1
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
# Workflow responsible for the | |
# development release processes. | |
name: Build-Push-Dev-Image | |
on: | |
push: | |
branches: | |
- develop | |
- develop-v1 | |
- ghactions | |
paths-ignore: | |
- README.md | |
# - .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 |