fix: stopping warnings from use of Obsolete InterpolationTimeField #51
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
name: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
Release: | |
env: | |
SOURCE_PATH: Assets/NetworkPositionSync | |
# target path should be path inside unityPackage, should be inside asset folder | |
TARGET_PATH: Assets/NetworkPositionSync | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: '3.1.100' | |
- name: Install unity-packer | |
run: dotnet tool install -g unity-packer | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Release | |
# id so output can be used by other steps | |
id: semantic | |
uses: cycjimmy/semantic-release-action@v3 | |
with: | |
extra_plugins: | | |
@semantic-release/exec | |
@semantic-release/changelog | |
@semantic-release/git | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |