Skip to content

Commit

Permalink
first steps
Browse files Browse the repository at this point in the history
  • Loading branch information
pchachicho committed Oct 25, 2024
1 parent 16f86e5 commit 7de1f17
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-push-dev-image.yml
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
27 changes: 27 additions & 0 deletions .github/workflows/build-push-release.yml
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

0 comments on commit 7de1f17

Please sign in to comment.