Skip to content

ci(github): bump actions/checkout from 4 to 5 (#53) #6

ci(github): bump actions/checkout from 4 to 5 (#53)

ci(github): bump actions/checkout from 4 to 5 (#53) #6

Workflow file for this run

name: push
on:
push:
branches: main
env:
UV_VERSION: "0.5.13"
jobs:
docker:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v5
with:
version: ${{ env.UV_VERSION }}
- name: Build docker image
run: make build
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push to GitHub container registry
run: make push