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

44 lines
1.4 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:
2024-08-07 20:46:14 +02:00
# Push image to GitHub Packages.
# See also https://docs.docker.com/docker-hub/builds/
2023-08-14 16:41:07 +02:00
push:
2024-08-07 20:46:14 +02:00
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
2023-08-14 16:41:07 +02:00
steps:
- uses: actions/checkout@v3
2024-08-07 20:06:10 +02:00
2023-08-14 16:41:07 +02:00
- name: Build image
2024-08-07 20:46:14 +02: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:46:14 +02:00
[ "$VERSION" == "main" ] && VERSION=latest
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