From e7f9c2a75da935af374b1a04e832282c4eb5a97a Mon Sep 17 00:00:00 2001 From: Mexit <25229673+Mexit@users.noreply.github.com> Date: Thu, 25 Nov 2021 18:38:01 +0100 Subject: [PATCH] Minor updates --- .github/workflows/build_iso.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_iso.yml b/.github/workflows/build_iso.yml index 01dc2ac..82107e8 100644 --- a/.github/workflows/build_iso.yml +++ b/.github/workflows/build_iso.yml @@ -1,3 +1,6 @@ +env: + version: v3.15 + name: Alpine ISO Builder on: @@ -28,18 +31,18 @@ jobs: - name: Configure build keys run: echo | abuild-keygen -i -a - - name: Make ISO (v3.15) + - name: Make ISO (${version}) run: | chmod +x *.sh mv *.sh aports/scripts/ aports/scripts/mkimage.sh \ - --tag v3.14 \ + --tag ${version} \ --arch x86_64 \ --profile docker \ --outdir . \ - --repository https://dl-cdn.alpinelinux.org/alpine/v3.15/main \ - --repository https://dl-cdn.alpinelinux.org/alpine/v3.15/community + --repository https://dl-cdn.alpinelinux.org/alpine/${version}/main \ + --repository https://dl-cdn.alpinelinux.org/alpine/${version}/community - uses: "marvinpinto/action-automatic-releases@latest" with: