Trim v prefix from the docker version #49
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |