Skip to content

Create mirror.yml

Create mirror.yml #7

Workflow file for this run

name: SASPACer
on:
push:
branches:
- main
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Push to mirror
run: |
git config --global user.name "GitHub Action"
git config --global user.email "action@github.com"
git remote add mirror https://${{secrets.TOKEN}}@github.com/PharmaForest/SASPACer.git
git push mirror main