Merge pull request #79 from asadm/modules #265
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: Create Unity Package on release tag | |
on: [push, pull_request] | |
jobs: | |
echo: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
echo "Assets/PlayroomKit.meta" > metaList | |
echo "Assets/Plugins.meta" >> metaList | |
find Assets/PlayroomKit/ -name \*.meta >> metaList | |
echo metaList | |
- run: mkdir output | |
- name: Set release version ENV | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- uses: pCYSl5EDgo/create-unitypackage@master | |
with: | |
package-path: 'output/playroomkit.unitypackage' | |
include-files: metaList | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: playroomkit.unitypackage | |
path: output/playroomkit.unitypackage |