Skip to content

fixed AFfine bug in installation, added leverstein distance in pip re… #38

fixed AFfine bug in installation, added leverstein distance in pip re…

fixed AFfine bug in installation, added leverstein distance in pip re… #38

Workflow file for this run

name: Mirror to SoedingLab
on:
push:
branches:
- master
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup SSH
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan github.com >> ~/.ssh/known_hosts
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
- name: Push to SoedingLab
run: |
git remote add mirror git@github.com:soedinglab/PMGen.git
git push mirror master --verbose