Skip to content

Add a build information page to the debug handler #71

Add a build information page to the debug handler

Add a build information page to the debug handler #71

Workflow file for this run

name: build
on:
push:
branches:
tags:
- v*
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Detect version
run: |-
VERSION="development"
if [[ "${{ github.ref_type }}" == "tag" ]]; then
VERSION=${{ github.ref_name }}
fi
echo "VERSION=${VERSION#v}" >> "$GITHUB_ENV"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Running tests
uses: docker/build-push-action@v6
with:
target: test
push: false
build-args: |
VERSION=${{ env.VERSION }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build production image
uses: docker/build-push-action@v6
with:
target: production
push: ${{ github.ref_type == 'tag' }}
build-args: |
VERSION=${{ env.VERSION }}
tags: ghcr.io/blackskad/go-web-scaffold:${{ env.VERSION }}