41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
on: [push]
|
|
env:
|
|
REGISTRY: forgejo.sbox.hornwitser.no
|
|
REGISTRY_IMAGE: forgejo.sbox.hornwitser.no/furnavia/builder
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
container:
|
|
image: sif.g100.hornwitser.no:3000/furnavia/builder:latest
|
|
steps:
|
|
-
|
|
name: Get image tags
|
|
id: info
|
|
shell: bash
|
|
run: |
|
|
tee -a ${GITHUB_OUTPUT} <<EOF
|
|
TAGS<<EOT
|
|
$(
|
|
echo ${{ env.REGISTRY_IMAGE }}:${{ github.ref_name }}
|
|
if [[ "${{ github.ref_name }}" =~ ^r[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
echo ${{ env.REGISTRY_IMAGE }}:latest
|
|
elif [[ "${{ github.ref_name }}" == forgejo ]]; then
|
|
echo ${{ env.REGISTRY_IMAGE }}:development
|
|
fi
|
|
)
|
|
EOT
|
|
EOF
|
|
-
|
|
name: Authenticate
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
registry: ${{ env.REGISTRY }}
|
|
-
|
|
name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
tags: ${{ steps.info.outputs.TAGS }}
|