Skip to content

chore(deps): Bump docker/build-push-action from 5 to 6 #50

chore(deps): Bump docker/build-push-action from 5 to 6

chore(deps): Bump docker/build-push-action from 5 to 6 #50

Workflow file for this run

name: "Workflow Dispatch"
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
call-lint:
name: "Lint"
uses: ./.github/workflows/lint.yml
secrets: inherit
call-build:
name: "Build"
needs: call-lint
uses: ./.github/workflows/build.yml
secrets: inherit
call-staging:
name: "Staging"
needs: call-build
if: ${{ github.ref_name == 'develop' }}
uses: ./.github/workflows/staging.yml
secrets: inherit
call-release:
name: "Release"
needs: call-build
if: ${{ github.ref_protected == true }}
uses: ./.github/workflows/release.yml
secrets: inherit