Updated package and readme version #58
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: Asset Store | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
job: | |
name: Create branch | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Create branch | |
run: | | |
git branch -d asset-store &> /dev/null || echo asset-store branch not found | |
git checkout -b asset-store | |
rm -rf Tests | |
rm -f Tests.meta | |
rm -f package.json | |
rm -f package.json.meta | |
sed -i 's|//#include "Assets|#include "Assets|g' ./Samples/SDF/* | |
sed -i 's|#include "Packages|//#include "Packages|g' ./Samples/SDF/* | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email '[email protected]' | |
git commit -am "Removed tests and the package manifest, fixed shader includes" | |
git push -f -u origin asset-store |