We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d66ac71 commit c40f455Copy full SHA for c40f455
.github/workflows/dockerhub-release-matrix.yml
@@ -164,15 +164,10 @@ jobs:
164
let matrix = {include: [{version: $tag}]}
165
$"tags=($matrix | to json -r)" | save --append $env.GITHUB_OUTPUT
166
'
167
- get_publish_version:
168
- needs: merge_manifest
169
- runs-on: ubuntu-latest
170
- outputs:
171
- matrix: ${{ needs.merge_manifest.outputs.tags }}
172
publish:
173
- needs: [merge_manifest, get_publish_version] # Add merge_manifest
+ needs: merge_manifest
174
strategy:
175
- matrix: ${{ fromJson(needs.get_publish_version.outputs.matrix) }}
+ matrix: ${{ fromJson(needs.merge_manifest.outputs.tags) }}
176
uses: ./.github/workflows/mirror.yml
177
with:
178
version: ${{ matrix.version }}
0 commit comments