@cocreate/server-telemetry 1.15.0

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,3 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: CoCreate-app
@@ -0,0 +1,56 @@
1
+ name: Automated Workflow
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ jobs:
9
+ about:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v3
14
+ - name: Setup Node.js
15
+ uses: actions/setup-node@v3
16
+ with:
17
+ node-version: 16
18
+ - name: Jaid/action-sync-node-meta
19
+ uses: jaid/action-sync-node-meta@v1.4.0
20
+ with:
21
+ direction: overwrite-github
22
+ githubToken: "${{ secrets.GITHUB }}"
23
+
24
+ release:
25
+ runs-on: ubuntu-latest
26
+ steps:
27
+ - name: Checkout
28
+ uses: actions/checkout@v4
29
+ with:
30
+ fetch-depth: 0 # Required so semantic-release can trace git tags/history
31
+
32
+ - name: Setup Node.js
33
+ uses: actions/setup-node@v4
34
+ with:
35
+ node-version: 22
36
+
37
+ - name: Install Semantic Release & Plugins
38
+ # Installs semantic-release and its plugins on the runner
39
+ run: |
40
+ npm install -g semantic-release \
41
+ @semantic-release/changelog \
42
+ @semantic-release/npm \
43
+ @semantic-release/github \
44
+ @semantic-release/git
45
+
46
+ - name: Run Semantic Release (Native)
47
+ id: semantic
48
+ # This will automatically pick up your export default config file in the repository root
49
+ run: npx semantic-release
50
+ env:
51
+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
52
+ NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
53
+
54
+ outputs:
55
+ new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
56
+ new_release_version: "${{ steps.semantic.outputs.new_release_version }}"