Skip to content

Merge pull request #4 from Machillka/develop #7

Merge pull request #4 from Machillka/develop

Merge pull request #4 from Machillka/develop #7

Workflow file for this run

name: Sync Package Branch
on:
push:
branches: [main]
tags: ["v*"]
permissions:
contents: write
jobs:
sync-package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
- name: Update Package Branch
run: |
git subtree split --prefix=Assets/Framework -b temp-split
git push origin temp-split:package --force
git branch -D temp-split