Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI
on:
push:
branches:
- main
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Release
uses: cycjimmy/semantic-release-action@v3.1.2
with:
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
branch: main
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
14 changes: 14 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"tagFormat": "${version}",
"plugins": [
["@semantic-release/commit-analyzer", { "preset": "angular" }],
"@semantic-release/release-notes-generator",
["@semantic-release/changelog", { "preset": "angular" }],
["@semantic-release/npm", { "npmPublish": false }],
["@semantic-release/git", {
"assets": ["package.json", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}],
"@semantic-release/github"
]
}
15 changes: 5 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
Change Log
===

All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).

## [1.3.1] - 2022-10-24
- Added: OpenUPM documentation.

Expand All @@ -26,8 +21,8 @@ All notable changes to this project will be documented in this file. This projec
- Added: `DebugExtensions` to help debugging arrays and collections.
- Added: `GameObjectExtensions` to help with common `GameObject` operations.

[1.3.1]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.3.0...1.3.1
[1.3.0]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.2.0...1.3.0
[1.2.0]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/joaoborks/mygamedevtools-extensions/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/joaoborks/mygamedevtools-extensions/compare/593b818...1.0.0
[1.3.1]: https://github.com/mygamedevtools/extensions/compare/1.3.0...1.3.1
[1.3.0]: https://github.com/mygamedevtools/extensions/compare/1.2.0...1.3.0
[1.2.0]: https://github.com/mygamedevtools/extensions/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/mygamedevtools/extensions/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/mygamedevtools/extensions/compare/593b818...1.0.0