Skip to content

Commit 18cf8eb

Browse files
Merge pull request #5 from Geode-solutions/next
actions/checkout TOKEN
2 parents e29dc4b + 6ac2218 commit 18cf8eb

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.github/workflows/CD.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,18 @@ jobs:
1212
uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
15+
token: ${{ secrets.TOKEN }}
1516
- name: Python Semantic Release
1617
uses: python-semantic-release/python-semantic-release@master
18+
id: semantic-release
1719
with:
1820
github_token: ${{ secrets.TOKEN }}
1921
- name: Build
2022
run: |
21-
cat pyproject.toml
2223
python3 -m pip install --upgrade build
2324
python3 -m build
2425
- name: Upload
26+
if: steps.semantic-release.outputs.released == 'true'
2527
run: |
2628
python3 -m pip install twine
2729
python3 -m twine upload --repository pypi dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33

44

5+
## v1.1.0-rc.3 (2023-09-26)
6+
7+
### Fix
8+
9+
* fix(CD): update TOKEN ([`49b37c4`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/49b37c483e33b2e4c2412da0e0eb6b7aaee96a1c))
10+
11+
### Unknown
12+
13+
* actions/checkout TOKEN ([`111c578`](https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/111c578cbd786079ad3e2494a49caa192a815f23))
14+
15+
516
## v1.1.0-rc.2 (2023-09-26)
617

718
### Feature

pyproject.toml

Lines changed: 1 addition & 1 deletion
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 = "1.1.0-rc.2"
8+
version = "1.1.0-rc.3"
99
dynamic = ["dependencies"]
1010
authors = [
1111
{ name="Geode-solutions", email="[email protected]" },

0 commit comments

Comments
 (0)