Skip to content

Updated package and readme version #65

Updated package and readme version

Updated package and readme version #65

Workflow file for this run

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