Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
939 B
YAML
34 lines
939 B
YAML
name: Generate Semantic Release
|
|
on:
|
|
push:
|
|
branches:
|
|
- version-14-beta
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Entire Repository
|
|
uses: actions/checkout@v5
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
- name: Setup dependencies
|
|
run: |
|
|
npm install @semantic-release/git @semantic-release/exec --no-save
|
|
- name: Create Release
|
|
env:
|
|
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
GIT_AUTHOR_NAME: "Frappe PR Bot"
|
|
GIT_AUTHOR_EMAIL: "developers@frappe.io"
|
|
GIT_COMMITTER_NAME: "Frappe PR Bot"
|
|
GIT_COMMITTER_EMAIL: "developers@frappe.io"
|
|
run: npx semantic-release
|