We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52e67b6 commit f730e97Copy full SHA for f730e97
2 files changed
.github/workflows/deploy-image.yml
@@ -12,7 +12,11 @@ env:
12
IMAGE_NAME: ${{ github.repository }}
13
14
jobs:
15
+ tests:
16
+ uses: ./.github/workflows/test-run.yml
17
+
18
build-and-push-image:
19
+ needs: [tests]
20
runs-on: ubuntu-latest
21
permissions:
22
contents: write
.github/workflows/test-run.yml
@@ -3,8 +3,6 @@ name: Build & Test
3
on:
4
pull_request:
5
branches: [ '*' ]
6
- push:
7
- branches: [ '*' ]
8
workflow_call:
9
workflow_dispatch:
10
0 commit comments