2023-05-28 19:19:06 +00:00
|
|
|
name: Release
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_push:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: docker:latest
|
|
|
|
env:
|
|
|
|
REGISTRY: git.gertjankrol.nl
|
|
|
|
IMAGE_NAMESPACE: docker/toolkit
|
|
|
|
steps:
|
|
|
|
- name: Install dependencies # not present in `docker` container but needed for `checkout` action
|
|
|
|
run: apk add --no-cache git nodejs
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Docker login
|
|
|
|
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} https://${REGISTRY}
|
2023-09-01 21:40:54 +00:00
|
|
|
- name: Build and push
|
|
|
|
uses: actions/docker-build-push@v4
|
|
|
|
with:
|
2023-09-01 21:41:20 +00:00
|
|
|
push: true
|
2023-09-01 21:40:54 +00:00
|
|
|
tags:
|
|
|
|
- ${REGISTRY}/${IMAGE_NAMESPACE}:${{ github.ref_name }}
|
|
|
|
- ${REGISTRY}/${IMAGE_NAMESPACE}:latest
|
|
|
|
- name: Inspect image
|
|
|
|
run: ${REGISTRY}/${IMAGE_NAMESPACE}:${{ github.ref_name }}
|