appstore-1panel/.github/workflows/push_custom_to_released.yml

24 lines
639 B
YAML
Raw Normal View History

name: Push custom to released
on:
workflow_dispatch:
schedule:
- cron: '0 0 */3 * *'
jobs:
push-branch:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
2024-08-06 10:19:44 +08:00
uses: actions/checkout@v4
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.GITHUBTOKEN }}@github.com/${{ github.repository }}.git
git push origin custom:released --force