mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-24 14:53:52 +08:00
分支同步
Signed-off-by: 萌森 <qyg2297248353@163.com>
This commit is contained in:
parent
3f0ec70ce1
commit
870f6bdeb0
21
.github/workflows/push_custom_to_released.yml
vendored
Normal file
21
.github/workflows/push_custom_to_released.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
name: Push custom to released
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
push-branch:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: custom
|
||||
|
||||
- name: Push to released branch
|
||||
run: |
|
||||
git config --global user.name "${{ github.actor }}"
|
||||
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
|
||||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
|
||||
git push origin custom:released --force
|
Loading…
Reference in New Issue
Block a user