Skip to content

patch release

patch release #16

Workflow file for this run

name: patch release
on:
workflow_dispatch:
schedule:
- cron: "0 0 1 * *"
permissions:
contents: read
jobs:
patch-release:
permissions:
contents: write
pull-requests: write
if: github.ref == 'refs/heads/main' && github.repository == 'cri-o/cri-o'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: go.mod
- run: make release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}