Skip to content

Commit c40f455

Browse files
committed
chore: no longer need get_publish_version at all
1 parent d66ac71 commit c40f455

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/dockerhub-release-matrix.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -164,15 +164,10 @@ jobs:
164164
let matrix = {include: [{version: $tag}]}
165165
$"tags=($matrix | to json -r)" | save --append $env.GITHUB_OUTPUT
166166
'
167-
get_publish_version:
168-
needs: merge_manifest
169-
runs-on: ubuntu-latest
170-
outputs:
171-
matrix: ${{ needs.merge_manifest.outputs.tags }}
172167
publish:
173-
needs: [merge_manifest, get_publish_version] # Add merge_manifest
168+
needs: merge_manifest
174169
strategy:
175-
matrix: ${{ fromJson(needs.get_publish_version.outputs.matrix) }}
170+
matrix: ${{ fromJson(needs.merge_manifest.outputs.tags) }}
176171
uses: ./.github/workflows/mirror.yml
177172
with:
178173
version: ${{ matrix.version }}

0 commit comments

Comments
 (0)