Skip to content

Commit 5e0869b

Browse files
committed
Also push insiders image tags on nightly and release
The insiders image variant is no longer built separately but some consumers (e.g. ponylang/templates) still reference it. Tag and push the regular image under the insiders name so those workflows keep working.
1 parent 53d9dd1 commit 5e0869b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,13 @@ push:
1717

1818
push-nightly:
1919
docker push "${IMAGE}:nightly"
20+
docker tag "${IMAGE}:nightly" "${IMAGE}-insiders:nightly"
21+
docker push "${IMAGE}-insiders:nightly"
2022

2123
push-release:
2224
docker push "${IMAGE}:release"
25+
docker tag "${IMAGE}:release" "${IMAGE}-insiders:release"
26+
docker push "${IMAGE}-insiders:release"
2327

2428
pylint: build-nightly
2529
docker run --entrypoint pylint --rm "${IMAGE}:nightly" /entrypoint.py

0 commit comments

Comments
 (0)