Skip to content

Merge branch 'hotfix/v2.12.1' #41

Merge branch 'hotfix/v2.12.1'

Merge branch 'hotfix/v2.12.1' #41

Workflow file for this run

name: CI
on:
push:
branches:
- master
permissions:
contents: write
jobs:
split-upm:
name: split upm branch (force)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: split upm branch
run: |
git branch -d upm &> /dev/null || echo upm branch not found
git subtree split -P "$PKG_ROOT" -b upm
git checkout upm
if [[ -d "Samples" ]]; then
git mv Samples Samples~
rm -f Samples.meta
git config --global user.name 'github-bot'
git config --global user.email '[email protected]'
git commit -am "自動 : Samples => Samples~"
fi
git push -f -u origin upm
env:
PKG_ROOT: Packages/com.naukri.inspector-maid