@tf2pickup-org/mumble-protocol 1.0.3 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,50 @@
1
+ name: build
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - "master"
7
+ - "*.*.*"
8
+ - "renovate/**"
9
+ tags:
10
+ - "*.*.*"
11
+ pull_request:
12
+ branches:
13
+ - "master"
14
+ - "*.*.*"
15
+
16
+ jobs:
17
+ build:
18
+ name: build
19
+ runs-on: ubuntu-latest
20
+
21
+ strategy:
22
+ matrix:
23
+ node-version: [20.x]
24
+
25
+ steps:
26
+ - name: Checkout repository
27
+ uses: actions/checkout@v4
28
+
29
+ - name: Setup pnpm
30
+ uses: pnpm/action-setup@v2
31
+ with:
32
+ version: 8
33
+
34
+ - name: Use Node.js ${{ matrix.node-version }}
35
+ uses: actions/setup-node@v4
36
+ with:
37
+ node-version: ${{ matrix.node-version }}
38
+ cache: pnpm
39
+
40
+ - name: Install dependencies
41
+ run: pnpm install
42
+
43
+ - name: Install protoc
44
+ uses: arduino/setup-protoc@v1
45
+
46
+ - name: Generate proto files
47
+ run: pnpm generate-proto
48
+
49
+ - name: Build
50
+ run: pnpm build
@@ -0,0 +1,43 @@
1
+ name: Publish Package to npmjs
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
+
15
+ - name: Setup pnpm
16
+ uses: pnpm/action-setup@v2
17
+ with:
18
+ version: 8
19
+
20
+ - name: Setup Node.js
21
+ uses: actions/setup-node@v4
22
+ with:
23
+ node-version: 20.x
24
+ cache: pnpm
25
+ registry-url: "https://registry.npmjs.org"
26
+ scope: "@tf2pickup-org"
27
+
28
+ - name: Install dependencies
29
+ run: pnpm install
30
+
31
+ - name: Install protoc
32
+ uses: arduino/setup-protoc@v1
33
+
34
+ - name: Generate proto files
35
+ run: pnpm generate-proto
36
+
37
+ - name: Build
38
+ run: pnpm build
39
+
40
+ - name: Publish
41
+ run: pnpm publish --access public --no-git-checks
42
+ env:
43
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/.yarnrc.yml ADDED
@@ -0,0 +1,3 @@
1
+ defaultSemverRangePrefix: ""
2
+ nodeLinker: node-modules
3
+ yarnPath: .yarn/releases/yarn-3.7.0.cjs
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
 
2
2
 
3
+ ## [1.0.5](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.4...1.0.5) (2024-05-27)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **deps:** update dependency @protobuf-ts/runtime to v2.9.4 ([8c5ebec](https://github.com/tf2pickup-org/mumble-protocol/commit/8c5ebec89655d9fb8cc0e7849321076644bf585b))
9
+
10
+ ## [1.0.4](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.3...1.0.4) (2023-12-24)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **deps:** update dependency @protobuf-ts/runtime to v2.9.2 ([dd91676](https://github.com/tf2pickup-org/mumble-protocol/commit/dd916764d4caba8f5d36f15589e202044d3945e4))
16
+ * **deps:** update dependency @protobuf-ts/runtime to v2.9.3 ([8f6a938](https://github.com/tf2pickup-org/mumble-protocol/commit/8f6a938a06b0bb4fa5fec5515c7795438efb8f59))
17
+
3
18
  ## [1.0.3](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.2...1.0.3) (2023-10-05)
4
19
 
5
20
 
@@ -55,4 +70,4 @@
55
70
 
56
71
  ### Bug Fixes
57
72
 
58
- * **ci:** add github ci ([0a335f9](https://github.com/tf2pickup-org/mumble-protocol/commit/0a335f935cf8bbe12403e56f0929da729d5d5c42))
73
+ * **ci:** add github ci ([0a335f9](https://github.com/tf2pickup-org/mumble-protocol/commit/0a335f935cf8bbe12403e56f0929da729d5d5c42))