Skip to content

Commit 15f3498

Browse files
authored
Merge pull request #4 from apfelaudio/seb/dist
ci: add install step and upload dist/ folder
2 parents 2dd2f4a + 0139a18 commit 15f3498

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/main.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ jobs:
1212
- run: wget https://vcvrack.com/downloads/Rack-SDK-2.4.1-lin-x64.zip
1313
- run: unzip Rack-SDK*.zip && rm Rack-SDK*.zip
1414
- run: make RACK_DIR=`pwd`/Rack-SDK
15+
- run: make RACK_DIR=`pwd`/Rack-SDK install
1516
- uses: actions/upload-artifact@v4
1617
with:
1718
name: plugin-lin-x64
18-
path: |
19-
plugin.so
20-
plugin.json
19+
path: dist/
2120

2221
macos-build:
2322
runs-on: macos-latest
@@ -28,9 +27,8 @@ jobs:
2827
- run: wget https://vcvrack.com/downloads/Rack-SDK-2.4.1-mac-x64.zip
2928
- run: unzip Rack-SDK*.zip && rm Rack-SDK*.zip
3029
- run: make RACK_DIR=`pwd`/Rack-SDK
30+
- run: make RACK_DIR=`pwd`/Rack-SDK install
3131
- uses: actions/upload-artifact@v4
3232
with:
3333
name: plugin-mac-x64
34-
path: |
35-
plugin.so
36-
plugin.json
34+
path: dist/

0 commit comments

Comments
 (0)