Skip to content

Update push-to-private.yml #14

Update push-to-private.yml

Update push-to-private.yml #14

name: Push to another repository
on:
push:
branches:
- develop
permissions:
contents: write # Allows pushing to the repository
jobs:
push_changes:
runs-on: ubuntu-latest
steps:
- name: Checkout source repository
uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-tags: true
- 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 private https://x-access-token:${MLX_TOKEN}@github.com/ecmwf-lab/anemoi-datasets-private.git
git push private develop