Mirror/.github/workflows/Semantic.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

name: Semantic Release
on:
2023-01-20 07:31:13 +00:00
workflow_dispatch:
workflow_call:
jobs:
SemanticRelease:
name: Semantic Release
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '3.1.100'
# Installs nuget package from https://www.nuget.org/packages/unity-packer
# Used by Semantic Release to create the Unity package.
- name: Install unity-packer
run: dotnet tool install -g unity-packer
# Install conventional-changelog-conventionalcommits
# Required for Semantic Release Notes Generator
- name: Install conventional-changelog-conventionalcommits
run: npm i -D conventional-changelog-conventionalcommits
# See .releaserc.yml for configuration of semantic-release
- name: Release
2023-11-14 14:38:21 +00:00
uses: cycjimmy/semantic-release-action@v4
with:
2024-04-15 11:17:41 +00:00
semantic_version: 23
extra_plugins: |
@semantic-release/exec
@semantic-release/changelog
@semantic-release/git
branch: master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}