ChryssaAliferi is testing out GitHub Actions 🚀 #142
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 | |
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 | |
on: [push] | |
jobs: | |
echo: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
echo "Assets/RudderStack.meta" > metaList | |
find Assets/RudderStack/ -name \*.meta >> metaList | |
- run: mkdir a | |
- uses: pCYSl5EDgo/create-unitypackage@v1 | |
with: | |
package-path: 'a/output.unitypackage' | |
include-files: metaList | |
- uses: actions/upload-artifact@master | |
with: | |
path: a | |
name: package |