build_linux_x86 #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build_linux_x86 | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Linux x86_64 | |
runs-on: ubuntu-20.04 | |
steps: | |
# Checks-out the repository under $GITHUB_WORKSPACE | |
- uses: actions/checkout@v4 | |
# Runs a set of commands using the runners shell | |
- name: Build-commands | |
run: | | |
cd $GITHUB_WORKSPACE/src | |
chmod u+x ./build_linux.bash | |
./build_linux.bash | |
- name: Upload binary artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: muscle-linux-x86 | |
path: /home/runner/work/muscle/muscle/bin/muscle |