Skip to content

build(deps): bump github.com/samber/slog-multi from 1.0.1 to 1.0.2 #57

build(deps): bump github.com/samber/slog-multi from 1.0.1 to 1.0.2

build(deps): bump github.com/samber/slog-multi from 1.0.1 to 1.0.2 #57

Workflow file for this run

name: CI - Publication
on:
push:
branches:
release:
types: [published]
env:
GOFLAGS: -mod=readonly
jobs:
build_keycloakUpdater:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Build package
run: go build -v .
- name: Unit Tests
run: go test ./...
- name: Integration Tests
run: go test -tags=integration
container_keycloakUpdater:
name: Push container
needs: build_keycloakUpdater
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
id: login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=tag
type=sha,format=short
flavor: |
latest=true
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}