Files
github-slug-action/.github/workflows/v5-release.yml
Claude 21cac3c6e4 ci: use v5.x as default branch for workflows and releases
- Update v5-tests.yml to run on push to v5.x branch
- Update v5-release.yml to publish releases from v5.x branch
- Update .releaserc.json to target v5.x branch for semantic versioning
- Corrects workflow configuration to match repository's actual default branch
2026-07-06 17:25:12 +00:00

27 lines
607 B
YAML

name: "[v5] Release"
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
packages: write
jobs:
release:
runs-on: ubuntu-latest
concurrency:
group: release-${{ github.ref }}-${{ github.event_name }}
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Release this GitHub Action
uses: cycjimmy/semantic-release-action@v4
with:
semantic_version: 21
branches: v5.x
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}