docker push on release

pull/1118/head
Willy 2023-02-18 23:40:11 +01:00
parent 045bcefe1e
commit 20c496a89c
No known key found for this signature in database
GPG Key ID: 02E60AE5D9208602
1 changed files with 9 additions and 2 deletions

View File

@ -456,6 +456,10 @@ jobs:
with: with:
name: binaries name: binaries
path: binaries path: binaries
- uses: actions/download-artifact@v3
with:
name: docker-images
path: images
- uses: ncipollo/release-action@v1 - uses: ncipollo/release-action@v1
with: with:
allowUpdates: true allowUpdates: true
@ -466,6 +470,9 @@ jobs:
omitBodyDuringUpdate: true omitBodyDuringUpdate: true
prerelease: ${{ needs.data.outputs.is_prerelease == 'true' && 'true' || ''}} prerelease: ${{ needs.data.outputs.is_prerelease == 'true' && 'true' || ''}}
updateOnlyUnreleased: true updateOnlyUnreleased: true
- name: import images
# TODO push docker image(s) run: for file in images/*.tar; do docker load < $file; done
- run: docker image ls
- name: push all images
run: for image in $(cat images/docker-images.txt); do echo pushing $image; docker push $image; done
# TODO bring back dockerhub image # TODO bring back dockerhub image