Skip to content

Alpine

Alpine #38

Workflow file for this run

name: 'Alpine'
on:
push:
tags:
- alpine-*.*.*
jobs:
build:
strategy:
fail-fast: false
matrix:
release: [
{distro: "alpine", version: "3.16"},
{distro: "alpine", version: "3.17"},
{distro: "alpine", version: "3.18"},
{distro: "alpine", version: "3.19"},
{distro: "alpine", version: "edge"}
]
os: [
{arch: "aarch64", builder: "ubicloud-standard-2-arm"},
{arch: "x86_64", builder: "warp-ubuntu-latest-x64-2x"}
]
runs-on: ${{matrix.os.builder}}
env:
ImageOS: ubuntu22
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup IcePAK
uses: upmaru/icepak@v0
with:
alpine: v3.19
arch: ${{matrix.os.arch}}
- name: Generate Serial
id: generate-serial
run: |
echo "serial=$(date +'%Y%m%d')-$GITHUB_RUN_NUMBER" >> $GITHUB_OUTPUT
- name: Build Image
run: |
sudo apt-get install btrfs-progs dosfstools qemu-utils gdisk -y
sudo ~/go/bin/distrobuilder build-dir images/${{matrix.release.distro}}.yml rootfs -o image.serial=${{ steps.generate-serial.outputs.serial }} -o image.architecture=${{matrix.os.arch}} -o image.release=${{matrix.release.version}}
sudo ~/go/bin/distrobuilder pack-incus images/${{matrix.release.distro}}.yml rootfs -o image.serial=${{ steps.generate-serial.outputs.serial }} -o image.architecture=${{matrix.os.arch}} -o image.release=${{matrix.release.version}}
sudo ~/go/bin/distrobuilder pack-incus images/${{matrix.release.distro}}.yml rootfs --vm -o image.serial=${{ steps.generate-serial.outputs.serial }} -o image.architecture=${{matrix.os.arch}} -o image.release=${{matrix.release.version}}
- name: Push
run: |
icepak push --serial ${{ steps.generate-serial.outputs.serial }} --os ${{matrix.release.distro}} --arch ${{matrix.os.arch}} --release ${{matrix.release.version}} --variant default
shell: alpine.sh {0}
env:
POLAR_AUTH_TOKEN: ${{ secrets.POLAR_AUTH_TOKEN }}
POLAR_ENDPOINT: ${{ vars.POLAR_ENDPOINT }}