Skip to content

Commit 4dbed8a

Browse files
committed
Bitbucket pipeline
1 parent 7870610 commit 4dbed8a

File tree

7 files changed

+61
-38
lines changed

7 files changed

+61
-38
lines changed

.github/workflows/archive.yaml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,20 @@ jobs:
55
package:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3
8+
- uses: actions/checkout@v4
99
- name: Use Node.js
10-
uses: actions/setup-node@v3
10+
uses: actions/setup-node@v4
1111
with:
12-
node-version: '23.6.1'
12+
node-version: '22.21.0'
1313
- name: Build
1414
run: |
15-
yarn install --frozen-lock-file
16-
yarn build
17-
yarn package
18-
# - name: Upload
19-
# uses: actions/upload-artifact@v3
20-
# with:
21-
# name: module-presonus-studiolive.zip
22-
# path: module-presonus-studiolive.zip
15+
npm install -g pnpm
16+
pnpm install --frozen-lockfile
17+
pnpm run build
18+
pnpm run package
19+
20+
- name: Upload
21+
uses: actions/upload-artifact@v4
22+
with:
23+
name: bitfocus-presonus-studiolive.tgz
24+
path: bitfocus-presonus-studiolive-*.tgz

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/dist/
22
/pkg/
3-
presonus-studiolive-*.tgz
3+
bitfocus-presonus-studiolive-*.tgz
44
node_modules/
55
.DS_Store

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 23.6.1
1+
nodejs 22.21.0

companion/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"manufacturer": "PreSonus",
44
"shortname": "presonus-studiolive",
55
"description": "PreSonus StudioLive Series III integration for Bitfocus Companion",
6-
"id": "presonus-studiolive",
7-
"name": "presonus-studiolive",
6+
"id": "bitfocus-presonus-studiolive",
7+
"name": "PreSonus StudioLive Series III",
88
"version": "0.0.0",
99
"license": "MIT",
1010
"repository": "git+https://github.com/featherbear/bitfocus-companion-module-presonus-studiolive.git",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"dependencies": {
2222
"@companion-module/base": "^1.13.2",
2323
"nanoid": "^5.1.6",
24-
"presonus-studiolive-api": "github:featherbear/presonus-studiolive-api#v1.7.2"
24+
"presonus-studiolive-api": "github:featherbear/presonus-studiolive-api#c68244ef35ba2cc1605191ef330e030f3626ba66"
2525
},
2626
"devDependencies": {
2727
"@companion-module/tools": "^2.4.1",

pnpm-lock.yaml

Lines changed: 37 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
ignoredBuiltDependencies:
2+
- '@swc/core'
3+
- dtrace-provider
4+
5+
onlyBuiltDependencies:
6+
- presonus-studiolive-api

0 commit comments

Comments
 (0)