Skip to content

Bump github.com/alecthomas/chroma/v2 from 2.9.1 to 2.11.1 #86

Bump github.com/alecthomas/chroma/v2 from 2.9.1 to 2.11.1

Bump github.com/alecthomas/chroma/v2 from 2.9.1 to 2.11.1 #86

Workflow file for this run

---
name: Docker
on: [push]
jobs:
main:
name: publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/metadata-action@v5
id: docker
with:
images: |
mfinelli/cui
ghcr.io/mfinelli/cui
tags: type=semver,pattern={{version}}
- uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_TOKEN }}
- uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: ${{ startsWith(github.ref, 'refs/tags/') }}
tags: ${{ steps.docker.outputs.tags }}
- uses: peter-evans/dockerhub-description@v3
if: ${{ startsWith(github.ref, 'refs/tags/') }}
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: mfinelli/cui
short-description: ${{ github.event.repository.description }}