Skip to content

Commit

Permalink
BASE_IMAGE
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderdw committed Apr 19, 2024
1 parent 1027fa3 commit b423311
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dsmr-reader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
- .github/workflows/dsmr-reader.yml

env:
BASE_IMAGE: ghcr.io/xirixiz/dsmr-reader-docker:5.11.0-2024.04.02
BASE_IMAGE: 'ghcr.io/xirixiz/dsmr-reader-docker:5.11.0-2024.04.02'

jobs:
dsmr-reader:
Expand All @@ -26,28 +26,28 @@ jobs:
# AMD64
- DOCKER_TAG_SUFFIX: amd64
S6_ARCH: amd64
BASE_IMAGE: ${{ env.BASE_IMAGE }}
BASE_IMAGE: $BASE_IMAGE
PLATFORMS: linux/amd64
QEMU_ARCH: x86_64

# ARM32V6
- DOCKER_TAG_SUFFIX: armhf
S6_ARCH: armhf
BASE_IMAGE: ${{ env.BASE_IMAGE }}
BASE_IMAGE: $BASE_IMAGE
PLATFORMS: linux/arm/v6
QEMU_ARCH: arm

# ARM32V7
- DOCKER_TAG_SUFFIX: armv7
S6_ARCH: armv7
BASE_IMAGE: ${{ env.BASE_IMAGE }}
BASE_IMAGE: $BASE_IMAGE
PLATFORMS: linux/arm/v7
QEMU_ARCH: arm

# ARM64V8
- DOCKER_TAG_SUFFIX: aarch64
S6_ARCH: aarch64
BASE_IMAGE: ${{ env.BASE_IMAGE }}
BASE_IMAGE: $BASE_IMAGE
PLATFORMS: linux/arm64/v8
QEMU_ARCH: aarch64

Expand Down

0 comments on commit b423311

Please sign in to comment.