Skip to content

Commit 9d64fc0

Browse files
committed
Merge branch 'main' into feature/apps
2 parents a1a3460 + d224a40 commit 9d64fc0

5 files changed

Lines changed: 42 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
release:
10+
name: Create release
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
id-token: write
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: Setup NodeJs
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '20'
23+
registry-url: 'https://registry.npmjs.org'
24+
25+
- name: Update npm
26+
run: npm install -g npm@latest
27+
28+
- name: Install dependencies
29+
run: npm ci
30+
31+
- name: Build and run code
32+
run: npm run build
33+
34+
- name: Publish
35+
run: npm publish

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ name: Test
22

33
on:
44
push:
5-
pull_request:
5+
branches-ignore:
6+
- main
7+
tags-ignore:
8+
- 'v*'
69

710
jobs:
811
test_code:

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ To publish and release changes and create a version tag using:
8282

8383
npm version patch
8484
git push && git push origin --tags
85-
npm publish
8685

8786
## Contact
8887

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@studiorack/cli",
3-
"version": "3.0.1",
3+
"version": "3.0.4",
44
"description": "Audio project manager tool",
55
"type": "module",
66
"main": "./build/index.js",

0 commit comments

Comments
 (0)