Alpine Linux updated to 3.21

This commit is contained in:
MexIT 2024-12-06 13:51:49 +01:00
parent 240807b826
commit 244ba9bd6e
2 changed files with 4 additions and 6 deletions

View file

@ -1,18 +1,16 @@
env: env:
version: v3.20 version: v3.21
name: Alpine ISO Builder name: Alpine ISO Builder
on: on:
push: push:
tags:
- 'v*'
jobs: jobs:
build_ISOs: build_ISOs:
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
container: container:
image: alpine:3.20 image: alpine:3.21
steps: steps:
- name: Install software - name: Install software
@ -55,6 +53,7 @@ jobs:
include-hidden-files: true include-hidden-files: true
release_ISOs: release_ISOs:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
needs: build_ISOs needs: build_ISOs
steps: steps:
@ -73,6 +72,5 @@ jobs:
gh release create ${{ github.ref_name }} \ gh release create ${{ github.ref_name }} \
--verify-tag \ --verify-tag \
--latest \ --latest \
--draft \
--notes-file changelog.txt \ --notes-file changelog.txt \
*.iso *.iso

View file

@ -1,6 +1,6 @@
#!/bin/sh -e #!/bin/sh -e
alpinelinux="v3.20.3" alpinelinux="v3.21.0"
version="${alpinelinux%.*}" version="${alpinelinux%.*}"
HOSTNAME="$1" HOSTNAME="$1"