Updated package and readme version #65
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: UPM | |
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 upm &> /dev/null || echo upm branch not found | |
git checkout -b upm | |
git mv Samples Samples~ | |
rm -f Samples.meta | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email '[email protected]' | |
git commit -am "Renamed Samples to Samples~" | |
git push -f -u origin upm |