Skip to content

Commit 3562ef7

Browse files
authored
Merge pull request #176 from Geode-solutions/fix/semantic
fix(Actions): update semantic config
2 parents 8eb518c + e3b9e89 commit 3562ef7

File tree

4 files changed

+7
-20
lines changed

4 files changed

+7
-20
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ jobs:
1010
test:
1111
uses: Geode-solutions/actions/.github/workflows/py-test.yml@master
1212
with:
13-
repos: ${{ vars.REPOS }}
13+
npm: true
1414
secrets: inherit

.github/workflows/test_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ jobs:
88
test:
99
uses: Geode-solutions/actions/.github/workflows/py-test-pr.yml@master
1010
with:
11-
repos: ${{ vars.REPOS }}
11+
npm: true
1212
secrets: inherit

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"name": "@geode/opengeodeweb-back",
3-
"version": "0.0.0-semantically-released",
3+
"version": "0.0.0",
44
"description": "",
55
"scripts": {
6-
"json": "node generate_schemas.js opengeodeweb_back routes route /"
6+
"json": "node generate_schemas.js opengeodeweb_back routes route /",
7+
"test": "npm run json",
8+
"build": "npm run json"
79
},
810
"dependencies": {
911
"glob": "^11.0.3"

pyproject.toml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "OpenGeodeWeb-Back"
8-
version = "5.9.0-rc.2"
8+
version = "0.0.0"
99
dynamic = ["dependencies"]
1010
authors = [
1111
{ name="Geode-solutions", email="[email protected]" },
@@ -32,18 +32,3 @@ where = ["src"]
3232
[tool.setuptools.package-data]
3333
"opengeodeweb_back.routes.schemas" = ["*.json"]
3434
"opengeodeweb_back.routes.models.schemas" = ["*.json"]
35-
36-
[tool.semantic_release]
37-
version_toml = [
38-
"pyproject.toml:project.version",
39-
]
40-
41-
[tool.semantic_release.remote.token]
42-
env = "GH_TOKEN"
43-
44-
[tool.semantic_release.branches.master]
45-
match = "master"
46-
47-
[tool.semantic_release.branches.next]
48-
match = "next"
49-
prerelease = true

0 commit comments

Comments
 (0)