Skip to content

chore(deps): Bump docker/setup-buildx-action from 2 to 3 #233

chore(deps): Bump docker/setup-buildx-action from 2 to 3

chore(deps): Bump docker/setup-buildx-action from 2 to 3 #233

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
call-build:
name: "Build & Test"
needs: call-lint
uses: ./.github/workflows/build.yml
secrets: inherit
call-deploy:
name: "Deploy"
needs: call-build
uses: ./.github/workflows/deploy.yml
secrets: inherit
call-release:
name: "Release"
needs: call-build
if: ${{ github.ref_name == 'main' }}
uses: ./.github/workflows/release.yml
secrets: inherit