Skip to content

Commit b7e2ce3

Browse files
committed
Revert ".github: Fix manifest step"
This reverts commit fb11d88.
1 parent fb11d88 commit b7e2ce3

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -90,23 +90,15 @@ jobs:
9090
registry: ghcr.io
9191
username: ${{ github.actor }}
9292
password: ${{ secrets.GITHUB_TOKEN }}
93-
- name: Pull images
94-
run: |
95-
docker pull ghcr.io/python/${{ inputs.package }}:${{ needs.generate-version.outputs.builddate }}.${{ github.run_id }}-amd64
96-
docker tag ghcr.io/python/${{ inputs.package }}:${{ needs.generate-version.outputs.builddate }}.${{ github.run_id }}-amd64 ghcr.io/python/${{ inputs.package }}:amd64
97-
98-
docker pull ghcr.io/python/${{ inputs.package }}:${{ needs.generate-version.outputs.builddate }}.${{ github.run_id }}-arm64
99-
docker tag ghcr.io/python/${{ inputs.package }}:${{ needs.generate-version.outputs.builddate }}.${{ github.run_id }}-arm64 ghcr.io/python/${{ inputs.package }}:arm64
100-
10193
- name: Set manifest
10294
run: |
10395
docker manifest create ghcr.io/python/${{ inputs.package }}:${{ needs.generate-version.outputs.builddate }}.${{ github.run_id }} \
104-
ghcr.io/python/${{ inputs.package }}:amd64 \
105-
ghcr.io/python/${{ inputs.package }}:arm64
96+
ghcr.io/python/${{ inputs.package }}:${{ needs.generate-version.outputs.builddate }}.${{ github.run_id }}-amd64 \
97+
ghcr.io/python/${{ inputs.package }}:${{ needs.generate-version.outputs.builddate }}.${{ github.run_id }}-arm64
10698
10799
docker manifest create ghcr.io/python/${{ inputs.package }}:latest \
108-
ghcr.io/python/${{ inputs.package }}:amd64 \
109-
ghcr.io/python/${{ inputs.package }}:arm64
100+
ghcr.io/python/${{ inputs.package }}:${{ needs.generate-version.outputs.builddate }}.${{ github.run_id }}-amd64 \
101+
ghcr.io/python/${{ inputs.package }}:${{ needs.generate-version.outputs.builddate }}.${{ github.run_id }}-arm64
110102
111103
docker manifest push ghcr.io/python/${{ inputs.package }}:latest
112104
docker manifest push ghcr.io/python/${{ inputs.package }}:${{ needs.generate-version.outputs.builddate }}.${{ github.run_id }}

0 commit comments

Comments
 (0)