Skip to content

netmhcpan parser added to processing_functions.py and removed from al… #20

netmhcpan parser added to processing_functions.py and removed from al…

netmhcpan parser added to processing_functions.py and removed from al… #20

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 [email protected]:soedinglab/PMGen.git
git push mirror master --verbose