mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 14:00:47 +02:00
25 lines
671 B
YAML
25 lines
671 B
YAML
name: Build Linux
|
|
on: [push]
|
|
jobs:
|
|
build:
|
|
name: Build Linux
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Fix up git URLs
|
|
run: echo -e '[url "https://github.com/"]\n insteadOf = "git@github.com:"' >> ~/.gitconfig
|
|
shell: bash
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|
|
submodules: true
|
|
- name: "Run script"
|
|
run: |
|
|
export OS="linux"
|
|
./ci/build.sh
|
|
shell: bash
|
|
env:
|
|
APIKEY: ${{ secrets.APIKEY }}
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Wavetable_Linux
|
|
path: ci/bin/Wavetable_Linux.zip
|