Skip to content

patch release

patch release #5

Workflow file for this run

name: patch release
on:
workflow_dispatch:
schedule:
- cron: '0 0 1 * *'
env:
GO_VERSION: '1.22'
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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with:
fetch-depth: 0
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: ${{ env.GO_VERSION }}
- run: make release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}