Skip to content

Commit

Permalink
add public-release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
furkanakkurt1335 committed Feb 1, 2024
1 parent 9e2cfcb commit f65e83d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/sync-public-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Sync public-release
on:
push:
branches:
- public-release # Sync only when public-release branch is updated
workflow_dispatch: # Sync manually
jobs:
push-to-public-repo:
runs-on: ubuntu-latest
steps:
- name: Checkout source repository
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Push changes to target repository
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.PAT }} # organization-level PAT
repository: boun-tabi-LMG/TURNA # Target repository
branch: public-release # Push to public-release branch
force: true
tags: true
directory: "."

0 comments on commit f65e83d

Please sign in to comment.