Skip to content

Update Go and dependencies #18

Update Go and dependencies

Update Go and dependencies #18

Workflow file for this run

name: Docker
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
packages: write
jobs:
image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Docker Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/xperimental/linky
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}