Skip to content

Commit

Permalink
cicd: always publish container
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Van Bouwel committed Dec 6, 2024
1 parent 37e3aa9 commit fb1c4c1
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 46 deletions.
46 changes: 0 additions & 46 deletions .github/workflows/container_build.yml

This file was deleted.

41 changes: 41 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
pull_request:
branches: [ "*", "**" ]

env:
IMAGE_NAME: fakes3pp

jobs:
lint:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -64,3 +67,41 @@ jobs:
- name: Test
# As we use config files from time to time we always want to run without cache
run: go clean -testcache && go test -coverprofile cover.out -v ./...

- name: Vet
run: go vet
# This pushes the image to GitHub Packages.
push:
runs-on: ubuntu-latest
needs: [build]
permissions:
packages: write
contents: read

steps:
- uses: actions/checkout@v4

- name: Build image
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"

- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
#
- name: Push image
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# This changes all uppercase characters to lowercase.
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# This strips the git ref prefix from the version.
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# This strips the "v" prefix from the tag name.
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# This uses the Docker `latest` tag convention.
[ "$VERSION" == "main" ] && VERSION=latest
# Use commit hash if no other applicable tag
[ "$VERSION" != "latest" ] && [[ "${{ github.ref }}" != "refs/tags/"* ]] && VERSION="commit-$GITHUB_SHA"
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION

0 comments on commit fb1c4c1

Please sign in to comment.