Skip to content

Merge pull request #1017 from carapace-sh/doc-fix-link #370

Merge pull request #1017 from carapace-sh/doc-fix-link

Merge pull request #1017 from carapace-sh/doc-fix-link #370

Workflow file for this run

name: Go
on:
push:
branches:
- 'master'
tags:
- 'v*'
jobs:
docker:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the Docker image
run: |
tag=latest
[[ "$GITHUB_REF" =~ ^refs/tags/ ]] && tag="${GITHUB_REF/refs\/tags\//}"
docker build . --tag "ghcr.io/carapace-sh/carapace:${tag}"
docker push "ghcr.io/carapace-sh/carapace:${tag}"