This repository was archived by the owner on Nov 14, 2025. It is now read-only.
Commit 323854c
authored
fix: use version in Docker artifact naming for consistency with NPM (#311)
Changed Docker artifact-name from 'docker-image-${{ github.sha }}' to
'docker-image-${{ needs.build.outputs.version }}' to match the NPM
artifact naming pattern.
This ensures consistent artifact naming across all artifact types:
- NPM: npm-package-{VERSION}-{SHA}
- Docker: docker-image-{VERSION}-{SHA}
With consistent naming, determine-artifact.sh can use the same logic
for both artifact types without conditional branches.
Fixes the publish workflow failures where it couldn't find Docker
artifacts because it was looking for docker-image-{VERSION}-{SHA}
but the actual artifact was docker-image-{SHA}-{SHA}.1 parent 2a326cb commit 323854c
File tree
2 files changed
+8
-1
lines changed- .changeset
- .github/workflows
2 files changed
+8
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
188 | 188 | | |
189 | 189 | | |
190 | 190 | | |
191 | | - | |
| 191 | + | |
192 | 192 | | |
193 | 193 | | |
194 | 194 | | |
| |||
0 commit comments