[ci] Switch to planetmint-aio Docker image

Signed-off-by: Julian Strobl <jmastr@mailbox.org>
This commit is contained in:
Julian Strobl 2023-03-13 10:55:17 +01:00
parent 26e0a21e39
commit eae8ec4c1e
No known key found for this signature in database
GPG Key ID: E0A8F9AD733499A7

View File

@ -171,6 +171,22 @@ jobs:
labels: ${{ steps.semver.outputs.labels }} labels: ${{ steps.semver.outputs.labels }}
env: env:
CRYPTOGRAPHY_DONT_BUILD_RUST: 1 CRYPTOGRAPHY_DONT_BUILD_RUST: 1
- name: Docker meta AIO
id: semver-aio # you'll use this in the next step
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
ghcr.io/planetmint/planetmint-aio
# Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Build and push AIO - name: Build and push AIO
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
with: with:
@ -178,7 +194,7 @@ jobs:
file: Dockerfile-all-in-one file: Dockerfile-all-in-one
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }} push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.semver.outputs.tags }}-aio tags: ${{ steps.semver-aio.outputs.tags }}-aio
labels: ${{ steps.semver.outputs.labels }}-aio labels: ${{ steps.semver-aio.outputs.labels }}-aio
env: env:
CRYPTOGRAPHY_DONT_BUILD_RUST: 1 CRYPTOGRAPHY_DONT_BUILD_RUST: 1