File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 30
30
id : get_tag
31
31
uses : ./.github/actions/get-image-tag
32
32
with :
33
- tag : ${{ github.event. inputs.image_tag }}
33
+ tag : ${{ inputs.image_tag }}
34
34
35
35
- name : 🔢 Get the commit hash
36
36
id : get_commit
Original file line number Diff line number Diff line change 1
- name : " 🚢 Publish Worker"
1
+ name : " ⚒️ Publish Worker"
2
2
3
3
on :
4
4
workflow_call :
44
44
- id : get_tag
45
45
uses : ./.github/actions/get-image-tag
46
46
with :
47
- tag : ${{ github.event. inputs.image_tag }}
47
+ tag : ${{ inputs.image_tag }}
48
48
49
49
- name : 🐋 Set up Docker Buildx
50
50
uses : docker/setup-buildx-action@v3
Original file line number Diff line number Diff line change @@ -62,11 +62,11 @@ jobs:
62
62
uses : ./.github/workflows/publish-webapp.yml
63
63
secrets : inherit
64
64
with :
65
- image_tag : ${{ github.event. inputs.image_tag }}
65
+ image_tag : ${{ inputs.image_tag }}
66
66
67
67
publish-worker :
68
68
needs : [typecheck, units]
69
69
uses : ./.github/workflows/publish-worker.yml
70
70
secrets : inherit
71
71
with :
72
- image_tag : ${{ github.event. inputs.image_tag }}
72
+ image_tag : ${{ inputs.image_tag }}
Original file line number Diff line number Diff line change 79
79
if : steps.changesets.outputs.published == 'true'
80
80
id : get_version
81
81
run : |
82
- package_version=$(echo ${{ steps.changesets.outputs.publishedPackages }} | jq '.[0].version')
82
+ package_version=$(echo ' ${{ steps.changesets.outputs.publishedPackages }}' | jq -r '.[0].version')
83
83
echo "package_version=${package_version}" >> "$GITHUB_OUTPUT"
84
84
85
85
publish :
You can’t perform that action at this time.
0 commit comments