Skip to content

Bump github.com/google/uuid from 1.3.1 to 1.4.0 #15

Bump github.com/google/uuid from 1.3.1 to 1.4.0

Bump github.com/google/uuid from 1.3.1 to 1.4.0 #15

Workflow file for this run

name: Docker
on:
pull_request:
push:
tags:
- "*"
branches:
- main
jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-tags: true
- name: Build Docker Image
run: make build
- name: Push Docker Image
if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'push'
run: make push
- name: Push Latest Docker Image
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: make push-latest