mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-09-19 00:46:14 +00:00
- 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
27 lines
607 B
YAML
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 }}
|