Publish GardenLinux Dev Image #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish GardenLinux Dev Image | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Podman | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get -qq -y install podman | |
curl -Lo ./crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-amd64 | |
chmod +x ./crun | |
sudo mv ./crun /usr/bin/crun | |
- name: Setup ORAS | |
uses: oras-project/setup-oras@v1 | |
- name: Clone gardenlinux repository | |
uses: actions/checkout@v2 | |
with: | |
repository: gardenlinux/gardenlinux | |
fetch-depth: 0 | |
- name: Checkout latest tag | |
run: | | |
git fetch --all --tags | |
latestTag=$(git describe --tags `git rev-list --tags --max-count=1`) | |
git checkout $latestTag | |
echo "{\"commandLine\": \"\", \"os-release\": \"$latestTag\"}" > config.json | |
- name: Overwrite features/ssh/info.yaml | |
run: | | |
echo 'description: "OpenSSH server"' > features/ssh/info.yaml | |
echo 'type: element' >> features/ssh/info.yaml | |
- name: Build with Podman | |
run: | | |
./build kvm | |
- name: Create dummy files using dd in the current directory | |
run: | | |
dd if=/dev/zero of=squashfs bs=1M count=1 | |
dd if=/dev/zero of=initrd bs=1M count=1 | |
dd if=/dev/zero of=vmlinuz bs=1M count=1 | |
- name: List files in the current directory | |
run: | | |
ls -alh | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push Artifact using ORAS | |
run: | | |
KVM_RAW_FILE=$(ls .build/*.raw | head -n 1) | |
METAL_SQUASHFS_FILE=squashfs | |
METAL_INITRD_FILE=initrd | |
METAL_VMLINUZ_FILE=vmlinuz | |
echo "Pushing files to ORAS..." | |
oras push ghcr.io/ironcore-dev/os-images/gardenlinux:latest \ | |
$KVM_RAW_FILE:application/vnd.ironcore.image.rootfs.v1alpha1.rootfs \ | |
$METAL_SQUASHFS_FILE:application/vnd.ironcore.image.squashfs.v1alpha1.squashfs \ | |
$METAL_INITRD_FILE:application/vnd.ironcore.image.initramfs.v1alpha1.initramfs \ | |
$METAL_VMLINUZ_FILE:application/vnd.ironcore.image.vmlinuz.v1alpha1.vmlinuz \ | |
--config config.json:application/vnd.ironcore.image.config.v1alpha1+json |