Skip to content

Commit a190df3

Browse files
Use publish command instead of tag (#237)
Co-authored-by: dx-pagopa-bot <[email protected]>
1 parent 5dc94da commit a190df3

File tree

9 files changed

+53
-4
lines changed

9 files changed

+53
-4
lines changed

.changeset/fast-knives-strive.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"test-durable-function": minor
3+
"azure-function-v3": minor
4+
"to-do-api": minor
5+
---
6+
7+
Set `private` property to `true` in the `package.json`

.changeset/pre.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"mode": "exit",
3+
"tag": "beta",
4+
"initialVersions": {
5+
"azure-function-v3": "0.2.4",
6+
"test-durable-function": "1.0.10",
7+
"to-do-api": "0.8.2",
8+
"to-do-webapp": "0.3.11",
9+
"@infra/github-runner": "0.1.1",
10+
"@infra/identity": "0.2.4",
11+
"@infra/repository": "0.4.2",
12+
"@infra/resources": "1.3.1",
13+
"@to-do/azure-adapters": "0.1.2",
14+
"@to-do/domain": "0.2.1",
15+
"@pagopa/typescript-config-node": "0.1.0",
16+
"@pagopa/typescript-config-react": "0.1.0"
17+
},
18+
"changesets": [
19+
"fast-knives-strive"
20+
]
21+
}

.github/workflows/release_candidate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
git add .
5858
git commit -m "Enter pre-release mode and version packages"
5959
echo "Publishing pre-release packages..."
60-
yarn dlx @changesets/cli tag
60+
yarn dlx @changesets/cli publish
6161
git push --follow-tags
6262
echo "Exiting pre-release mode"
6363
yarn dlx @changesets/cli pre exit

apps/azure-function-v3/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# azure-function-v3
22

3+
## 0.3.0-beta.0
4+
5+
### Minor Changes
6+
7+
- c2931ed: Set `private` property to `true` in the `package.json`
8+
39
## 0.2.4
410

511
### Patch Changes

apps/azure-function-v3/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "azure-function-v3",
3-
"version": "0.2.4",
3+
"version": "0.3.0-beta.0",
44
"type": "module",
5+
"private": true,
56
"main": "./dist/main.js",
67
"dependencies": {
78
"@azure/functions": "^3.5.1",

apps/test-durable-function/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# test-durable
22

3+
## 1.1.0-beta.0
4+
5+
### Minor Changes
6+
7+
- c2931ed: Set `private` property to `true` in the `package.json`
8+
39
## 1.0.10
410

511
### Patch Changes

apps/test-durable-function/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "test-durable-function",
3-
"version": "1.0.10",
3+
"version": "1.1.0-beta.0",
44
"type": "module",
5+
"private": true,
56
"description": "Azure Function to test TF module for Durable Functions",
67
"license": "MIT",
78
"main": "./dist/main.js",

apps/to-do-api/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# to-do-api
22

3+
## 0.9.0-beta.0
4+
5+
### Minor Changes
6+
7+
- c2931ed: Set `private` property to `true` in the `package.json`
8+
39
## 0.8.2
410

511
### Patch Changes

apps/to-do-api/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "to-do-api",
3-
"version": "0.8.2",
3+
"version": "0.9.0-beta.0",
44
"type": "module",
5+
"private": true,
56
"description": "Azure Function REST API for To Do List",
67
"license": "MIT",
78
"main": "./dist/main.js",

0 commit comments

Comments
 (0)