Skip to content

Upgraded to 2022.3.0f1 LTS #64

Upgraded to 2022.3.0f1 LTS

Upgraded to 2022.3.0f1 LTS #64

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