Skip to content

Commit

Permalink
improve workflow conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
josStorer committed Jul 24, 2024
1 parent cde2391 commit 288a3fe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Publish Docker Image
on: [push]
on:
push:
branches:
- master
tags:
- "v*"

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
Expand Down Expand Up @@ -116,7 +121,7 @@ jobs:

manifests:
name: Build manifests
needs: [docker_build]
needs: [ docker_build ]
runs-on: ubuntu-latest
steps:
- name: Get lowercase string for the repository name
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: release
on:
push:
branches:
- master
tags:
- "v*"

Expand Down

0 comments on commit 288a3fe

Please sign in to comment.