pika-debian-bleedingedge/.github/workflows/ci.yml

50 lines
1.3 KiB
YAML
Raw Normal View History

2024-03-24 18:54:30 +01:00
name: Debian base custom bleeding edge docker image for pika
2023-08-14 16:41:07 +02:00
on:
2024-03-29 12:05:12 +01:00
workflow_dispatch:
2024-07-26 15:22:52 +02:00
2023-08-14 16:41:07 +02:00
env:
2024-03-24 18:54:30 +01:00
IMAGE_NAME: pika-base-debian-container
2024-07-26 15:22:52 +02:00
IMAGE_VERSION: i386
2023-08-14 16:41:07 +02:00
jobs:
push:
2024-07-26 15:22:52 +02:00
runs-on: self-hosted
container:
image: debian:sid
volumes:
- /proc:/proc
options: --privileged -it
2023-08-14 16:41:07 +02:00
steps:
- uses: actions/checkout@v3
2024-07-26 15:22:52 +02:00
- name: Update APT Cache
run: apt-get update
- name: Get debootstrap
run: apt-get install -y debootstrap docker.io sudo
2024-07-26 15:24:25 +02:00
- name: Generate debootstrap tar
2024-07-26 15:26:59 +02:00
run: ./debootstrap.sh
2024-07-26 15:24:25 +02:00
2024-07-26 15:22:52 +02:00
- name: Import base image
run: docker import ./base_chroot.tgz rootfs-base-debian-i386
2023-08-14 16:41:07 +02:00
- name: Build image
2024-03-29 16:41:24 +01:00
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
2023-08-14 16:41:07 +02:00
- name: Log in to registry
# This is where you will update the personal access token to GITHUB_TOKEN
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Push image
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
2024-07-26 15:22:52 +02:00
echo ID=$IMAGE_ID
echo VERSION=$IMAGE_VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$IMAGE_VERSION
docker push $IMAGE_ID:$IMAGE_VERSION