This repository was archived by the owner on Apr 10, 2025. It is now read-only.
File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 4
4
pull_request :
5
5
branches : ["main"]
6
6
push :
7
- branches : ["main", "staging"]
7
+ branches : ["main", "staging", "feat_test_changes" ]
8
8
workflow_dispatch : # build on demand
9
9
# schedule:
10
10
# - cron: "43 6 * * 0" # build every Sunday at 6:43 AM UTC
@@ -43,11 +43,13 @@ jobs:
43
43
run : |
44
44
echo "Files in dockerfile: ${{ steps.filter.outputs.dockerfile_files }}"
45
45
echo "Files in go: ${{ steps.filter.outputs.go_files }}"
46
+ echo "dockerfile: ${{ steps.filter.outputs.dockerfile}}"
47
+ echo "go: ${{ steps.filter.outputs.go}}"
46
48
47
49
build-pun :
48
50
needs : [get-changed-files]
49
51
name : Pun
50
- if : ${{ needs.get-changed-files.outputs.go || needs.get-changed-files.outputs.dockerfile }}
52
+ if : ${{ needs.get-changed-files.outputs.go == 'true' || needs.get-changed-files.outputs.dockerfile == 'true' }}
51
53
uses : ./.github/workflows/build.yml
52
54
secrets : inherit
53
55
with :
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ jobs:
168
168
echo "$amend_command"
169
169
170
170
# Create the docker manifest with the amend command
171
- docker manifest create ${{ env.REGISTRY }}/${{ github.repository }}/ :${{ env.TAG }} $amend_command
171
+ docker manifest create ${{ env.REGISTRY }}/${{ github.repository }}:${{ env.TAG }} $amend_command
172
172
173
173
# Optionally push the manifest (comment out if not needed)
174
174
# docker manifest push ${{ env.REGISTRY }}/${{ github.repository }}/${{ matrix.dockerfile }}:${{ env.TAG }}
You can’t perform that action at this time.
0 commit comments