Commit 8fac8ea 1 parent 6aa927a commit 8fac8ea Copy full SHA for 8fac8ea
File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 38
38
needs : test
39
39
if : github.ref == 'refs/heads/main' && needs.test.result == 'success'
40
40
outputs :
41
- release-outputs : ${{ steps.release.outputs }}
41
+ last_release_version : ${{ steps.release.outputs.last_release_version }}
42
+ new_release_version : ${{ steps.release.outputs.new_release_version }}
43
+ new_release_published : ${{ steps.release.outputs.new_release_published }}
42
44
steps :
43
45
- name : Checkout
44
46
uses : actions/checkout@v4
65
67
deploy :
66
68
runs-on : ubuntu-latest
67
69
needs : release
68
- if : github.ref == 'refs/heads/main' && (needs.release.outputs.release-outputs. new_release_published == 'true' || github.event.inputs.force-docker == true)
70
+ if : github.ref == 'refs/heads/main' && (needs.release.outputs.new_release_published == 'true' || github.event.inputs.force-docker == true)
69
71
steps :
70
72
- name : Checkout
71
73
uses : actions/checkout@v4
@@ -105,7 +107,7 @@ jobs:
105
107
push : true
106
108
tags : |
107
109
godaddy/timings:latest
108
- godaddy/timings:${{ needs.release.outputs.release-outputs. new_release_version }}
110
+ godaddy/timings:${{ needs.release.outputs.new_release_version }}
109
111
cache-from : type=local,src=/tmp/.buildx-cache
110
112
cache-to : type=local,dest=/tmp/.buildx-cache
111
113
You can’t perform that action at this time.
0 commit comments