You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: Generate Semantic Release
- on:
- push:
- branches:
- - version-15
- permissions:
- contents: read
-
- jobs:
- release:
- name: Release
- runs-on: ubuntu-latest
- steps:
- - name: Checkout Entire Repository
- uses: actions/checkout@v4
- with:
- fetch-depth: 0
- persist-credentials: false
- - name: Setup Node.js
- uses: actions/setup-node@v3
- with:
- node-version: 20
- - 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: "XhiveFramework PR Bot"
- GIT_AUTHOR_EMAIL: "developers@xhiveframework.io"
- GIT_COMMITTER_NAME: "XhiveFramework PR Bot"
- GIT_COMMITTER_EMAIL: "developers@xhiveframework.io"
- run: npx semantic-release
|