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 abf0163 commit 1027fa3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/dsmr-reader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ on:
- 'dsmr_reader/rootfs/**'
- .github/workflows/dsmr-reader.yml

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

jobs:
dsmr-reader:
runs-on: ubuntu-latest
Expand All @@ -23,28 +26,28 @@ jobs:
# AMD64
- DOCKER_TAG_SUFFIX: amd64
S6_ARCH: amd64
BASE_IMAGE: ghcr.io/xirixiz/dsmr-reader-docker:development
BASE_IMAGE: ${{ env.BASE_IMAGE }}
PLATFORMS: linux/amd64
QEMU_ARCH: x86_64

# ARM32V6
- DOCKER_TAG_SUFFIX: armhf
S6_ARCH: armhf
BASE_IMAGE: ghcr.io/xirixiz/dsmr-reader-docker:development
BASE_IMAGE: ${{ env.BASE_IMAGE }}
PLATFORMS: linux/arm/v6
QEMU_ARCH: arm

# ARM32V7
- DOCKER_TAG_SUFFIX: armv7
S6_ARCH: armv7
BASE_IMAGE: ghcr.io/xirixiz/dsmr-reader-docker:development
BASE_IMAGE: ${{ env.BASE_IMAGE }}
PLATFORMS: linux/arm/v7
QEMU_ARCH: arm

# ARM64V8
- DOCKER_TAG_SUFFIX: aarch64
S6_ARCH: aarch64
BASE_IMAGE: ghcr.io/xirixiz/dsmr-reader-docker:development
BASE_IMAGE: ${{ env.BASE_IMAGE }}
PLATFORMS: linux/arm64/v8
QEMU_ARCH: aarch64

Expand Down

0 comments on commit 1027fa3

Please sign in to comment.