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

47 lines
1.5 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:
2023-08-14 16:41:07 +02:00
env:
2024-03-24 18:54:30 +01:00
IMAGE_NAME: pika-base-debian-container
2023-08-14 16:41:07 +02:00
jobs:
push:
2024-08-07 20:01:59 +02:00
runs-on: self-hosted
container:
2024-08-07 20:04:15 +02:00
image: ubuntu:latest
2024-08-07 20:01:59 +02:00
volumes:
- /proc:/proc
options: --privileged -it --cap-add=sys_admin --cap-add mknod --device=/dev/fuse --security-opt seccomp=unconfined --security-opt label=disable
2023-08-14 16:41:07 +02:00
steps:
- uses: actions/checkout@v3
2024-08-07 20:06:10 +02:00
- name: Get Packages
run: apt-get update && apt-get install docker.io
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
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
2024-08-07 20:01:59 +02:00
VERSION="v3lto"
2023-08-14 16:41:07 +02:00
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
2024-01-12 14:43:53 +01:00
docker push $IMAGE_ID:$VERSION