mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 14:00:47 +02:00
Initial Commit
This commit is contained in:
commit
73110bbde2
20 changed files with 2600 additions and 0 deletions
29
.github/workflows/build_macos.yaml
vendored
Normal file
29
.github/workflows/build_macos.yaml
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
name: Build macOS
|
||||
on: [push]
|
||||
jobs:
|
||||
build:
|
||||
name: Build macOS
|
||||
runs-on: macos-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="mac"
|
||||
./ci/build.sh
|
||||
shell: bash
|
||||
env:
|
||||
APPLICATION: ${{ secrets.APPLICATION }}
|
||||
INSTALLER: ${{ secrets.INSTALLER }}
|
||||
APPLE_PASS: ${{ secrets.APPLE_PASS }}
|
||||
APPLE_USER: ${{ secrets.APPLE_USER }}
|
||||
APIKEY: ${{ secrets.APIKEY }}
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: VirtualAnalog_Mac
|
||||
path: ci/bin/VirtualAnalog_Mac.zip
|
||||
Loading…
Add table
Add a link
Reference in a new issue