From 161a139a450d380ac1eaa4edea023f5ba5b80279 Mon Sep 17 00:00:00 2001 From: Andrey Kondratov <22258361+andrey-kondratov@users.noreply.github.com> Date: Mon, 19 Aug 2024 19:38:45 +0300 Subject: [PATCH] Fixed tagging. --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab0c720..72110c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ on: env: out_dir: ${{ vars.OUTPUT_DIR }} - tag: ${{ github.ref == format('refs/heads/{0}', 'master') && 'latest' || format('pr-{0}', github.event.pull_request.number) }}-arm64v8 + tag: ${{ github.ref == format('refs/heads/{0}', 'master') && 'latest' || format('pr-{0}', github.event.pull_request.number) }} jobs: build: @@ -42,9 +42,9 @@ jobs: cat << EOF > docker-compose.override.yml services: server: - image: ghcr.io/${{ github.repository }}:${tag} + image: ghcr.io/${{ github.repository }}:${tag}-arm64v8 db-init: - image: ghcr.io/${{ github.repository }}:${tag} + image: ghcr.io/${{ github.repository }}:${tag}-arm64v8 EOF cat << EOF > server.env @@ -87,9 +87,9 @@ jobs: cat << EOF > docker-compose.override.yml services: server: - image: ghcr.io/${{ github.repository }}:${tag} + image: ghcr.io/${{ github.repository }}:${tag}-arm64v8 db-init: - image: ghcr.io/${{ github.repository }}:${tag} + image: ghcr.io/${{ github.repository }}:${tag}-arm64v8 EOF cat << EOF > server.env