Files
Fonepay-Unity/.github/workflows/upm-split.yml
Savya Bikram Shah e610955120
All checks were successful
Publish UPM / split (push) Successful in 18s
chore(upm): release 0.2.1 and run split on macos host runner
Bump package to 0.2.1 (maintenance/publish, no API changes) and repoint
the Publish UPM workflow from ubuntu-latest to the macos host runner.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-16 11:53:21 +05:45

23 lines
632 B
YAML

name: Publish UPM
on:
push:
branches: [main]
paths: ['Packages/com.darkmattergameproduction.fonepay-unity/**']
workflow_dispatch:
jobs:
split:
runs-on: macos
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Split subtree to upm branch
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git subtree split --prefix=Packages/com.darkmattergameproduction.fonepay-unity -b upm
git push origin upm --force