Skip to content

restore peptide index support #297

restore peptide index support

restore peptide index support #297

Workflow file for this run

name: Build on MacOS
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types: [ created ]
jobs:
build:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Build Comet
run: make
- name: Test Comet
run: ./comet.exe -p
- name: Prepare Comet release
run: |
mkdir release && \
cp comet.exe release/comet.macos.exe && \
cp README.md release/README.md
- name: Upload build artificats
uses: actions/upload-artifact@v4
with:
name: comet-macos
path: release/*
- name: Upload binaries to the release
uses: svenstaro/upload-release-action@v2
if: ${{ github.event_name == 'release' }}
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
file: release/*
overwrite: true
file_glob: true