Skip to content

Commit

Permalink
add action to push to private
Browse files Browse the repository at this point in the history
  • Loading branch information
floriankrb committed Oct 8, 2024
1 parent 8238053 commit 2a148ab
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/push-to-private.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Push to another repository

on:
push:
branches:
- develop

jobs:
push_changes:
runs-on: ubuntu-latest

steps:
- name: Checkout source repository
uses: actions/checkout@v3

- name: Set up Git configuration
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Push changes to private repository
env:
MLX_TOKEN: ${{ secrets.MLX_TOKEN }}
run: |
git remote add target-repo https://x-access-token:${MLX_TOKEN}@github.com/ecmwf-lab/anemoi-datasets-private.git
git push target-repo develop

0 comments on commit 2a148ab

Please sign in to comment.