Skip to content

Commit

Permalink
chore(workflows): let release call docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNitroG committed Sep 25, 2024
1 parent f6485eb commit 12b433c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ name: Docker

on:
workflow_dispatch:
push:
tags:
- "v*"
workflow_call:

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
Expand All @@ -13,8 +11,6 @@ concurrency:
jobs:
run:
name: run
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,10 @@ jobs:
file_glob: true
overwrite: false
prerelease: ${{ needs.prepare.outputs.PRE_RELEASE }}

docker-build:
name: Docker Build
needs: prepare
if: ${{ needs.prepare.outputs.CONTINUE == 'true' }}
uses: ./.github/workflows/docker.yml
secrets: inherit

0 comments on commit 12b433c

Please sign in to comment.