-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ab7a85
commit 7b7839b
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name-template: '$YEAR-$MONTH-$DAY Release $COUNT 🚀' | ||
tag-template: '$YEAR-$MONTH-$DAY Release $COUNT' | ||
|
||
categories: | ||
- title: '🚀 Features' | ||
label: 'enhancement' | ||
- title: '🐛 Bug Fixes' | ||
label: 'bug' | ||
- title: '🔧 Refactoring' | ||
label: 'refactor' | ||
- title: '📖 Documentation' | ||
label: 'documentation' | ||
- title: '✅ Tests' | ||
label: 'test' | ||
- title: 'Other Changes' | ||
label: '*' | ||
|
||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
change-title-escapes: '\<*_&' | ||
|
||
template: | | ||
## Changes | ||
$CHANGES | ||
autolabeler: | ||
- label: enhancement | ||
branch: | ||
- '/^feat(ure)?[/-].+/' | ||
- label: bug | ||
branch: | ||
- '/^fix[/-].+/' | ||
- label: test | ||
branch: | ||
- '/^test[/-].+/' | ||
- label: refactor | ||
branch: | ||
- '/^refactor[/-].+/' | ||
- label: documentation | ||
branch: | ||
- '/^doc[/-].+/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
release: | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
# - name: Set up .NET Core | ||
# uses: actions/setup-dotnet@v7 | ||
# with: | ||
# dotnet-version: '3.1' | ||
|
||
# - name: Build C# application | ||
# run: dotnet build -c Release | ||
|
||
# - name: Archive application | ||
# run: zip -r app.zip path/to/your/application | ||
|
||
- name: Archive UE plugin | ||
run: zip -r UnrealEngine.zip Plugins/UnrealEngine | ||
|
||
- name: Archive Unity plugin | ||
run: zip -r Unity.zip Plugins/Unity | ||
|
||
- name: Archive Godot plugin | ||
run: zip -r Godot.zip Plugins/Godot | ||
|
||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: release-artifacts | ||
path: | | ||
UnrealEngine.zip | ||
Unity.zip | ||
Godot.zip | ||
- uses: release-drafter/release-drafter@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |