Skip to content

Commit 9b698a0

Browse files
committed
Release 2.0.3 - See CHANGELOG.md
1 parent 3d96dec commit 9b698a0

File tree

4 files changed

+18
-16
lines changed

4 files changed

+18
-16
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
name: "PUSH - Build on repository Push"
21
on:
32
push:
43
paths:
@@ -17,18 +16,17 @@ jobs:
1716
strategy:
1817
matrix:
1918
include:
20-
- distro: alpine
21-
distro_variant: 3.22
22-
latest: true
23-
uses: nfrastack/gha/.github/workflows/container-build_and_push.yml@main
19+
- { distro: "alpine", distro_variant: "3.22", latest: "true", arch: "linux/amd64,linux/arm64" }
20+
uses: nfrastack/gha/.github/workflows/container-build_generic.yml@main
2421
with:
25-
platforms: linux/amd64, linux/arm64
26-
base_image: ghcr.io/nfrastack/container-base
22+
base_image: "ghcr.io/nfrastack/container-base"
23+
tag: ${{ matrix.tag || '' }}
2724
distro: ${{ matrix.distro }}
2825
distro_variant: ${{ matrix.distro_variant }}
29-
include_distro_tag: false
30-
include_variant_tag: false
26+
image_variant: ${{ matrix.image_variant || '' }}
3127
latest: ${{ matrix.latest }}
28+
distro_latest: ${{ matrix.distro_latest }}
29+
platforms: ${{ matrix.arch }}
3230
secrets: inherit
3331
cleanup:
3432
needs: [ build ]

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.0.3 2025-11-01 <dave at tiredofit dot ca>
2+
3+
### Added
4+
- S3QL 5.4.1
5+
6+
17
## 2.0.2 2025-09-09 <dave at tiredofit dot ca>
28

39
### Added

Containerfile

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
ARG \
6-
BASE_IMAGE \
7-
DISTRO \
8-
DISTRO_VARIANT
5+
ARG \
6+
BASE_IMAGE
97

10-
FROM ${BASE_IMAGE}:${DISTRO}_${DISTRO_VARIANT}
8+
FROM ${BASE_IMAGE}
119

1210
LABEL \
1311
org.opencontainers.image.title="S3QL" \
@@ -21,7 +19,7 @@ LABEL \
2119

2220
ARG \
2321
S3QL_REPO_URL="https://github.com/s3ql/s3ql" \
24-
S3QL_VERSION="s3ql-5.4.0"
22+
S3QL_VERSION="s3ql-5.4.1"
2523

2624
COPY CHANGELOG.md /usr/src/container/CHANGELOG.md
2725
COPY LICENSE /usr/src/container/LICENSE

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Example:
5757
`ghcr.io/nfrastack/container-s3ql:1.0`
5858

5959
* `latest` will be the most recent commit
60-
* An otpional `tag` may exist that matches the [CHANGELOG](CHANGELOG.md) - These are the safest
60+
* An optional `tag` may exist that matches the [CHANGELOG](CHANGELOG.md) - These are the safest
6161
* If it is built for multiple distributions there may exist a value of `alpine` or `debian`
6262
* If there are multiple distribution variations it may include a version - see the registry for availability
6363

0 commit comments

Comments
 (0)