diff --git a/.github/workflows/publish-webapp.yml b/.github/workflows/publish-webapp.yml index 8e3af048d..b977ef0a1 100644 --- a/.github/workflows/publish-webapp.yml +++ b/.github/workflows/publish-webapp.yml @@ -30,7 +30,7 @@ jobs: id: get_tag uses: ./.github/actions/get-image-tag with: - tag: ${{ github.event.inputs.image_tag }} + tag: ${{ inputs.image_tag }} - name: 🔢 Get the commit hash id: get_commit diff --git a/.github/workflows/publish-worker.yml b/.github/workflows/publish-worker.yml index 224c604d2..a2e59bbb8 100644 --- a/.github/workflows/publish-worker.yml +++ b/.github/workflows/publish-worker.yml @@ -1,4 +1,4 @@ -name: "🚢 Publish Worker" +name: "⚒️ Publish Worker" on: workflow_call: @@ -44,7 +44,7 @@ jobs: - id: get_tag uses: ./.github/actions/get-image-tag with: - tag: ${{ github.event.inputs.image_tag }} + tag: ${{ inputs.image_tag }} - name: 🐋 Set up Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 63c3d0a9a..b11cb1862 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -62,11 +62,11 @@ jobs: uses: ./.github/workflows/publish-webapp.yml secrets: inherit with: - image_tag: ${{ github.event.inputs.image_tag }} + image_tag: ${{ inputs.image_tag }} publish-worker: needs: [typecheck, units] uses: ./.github/workflows/publish-worker.yml secrets: inherit with: - image_tag: ${{ github.event.inputs.image_tag }} + image_tag: ${{ inputs.image_tag }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a5af6a8b5..bd3a58440 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,7 +79,7 @@ jobs: if: steps.changesets.outputs.published == 'true' id: get_version run: | - package_version=$(echo ${{ steps.changesets.outputs.publishedPackages }} | jq '.[0].version') + package_version=$(echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -r '.[0].version') echo "package_version=${package_version}" >> "$GITHUB_OUTPUT" publish: