Skip to content

Commit

Permalink
chore: make reev frontend npm-instabllable (#401) (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Jan 22, 2024
1 parent 5329a6b commit 5c0db23
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ jobs:
steps:
- name: Create GitHub release
id: release
uses: GoogleCloudPlatform/release-please-action@v3
uses: GoogleCloudPlatform/release-please-action@v4
with:
release-type: python
package-name: reev
token: ${{ secrets.BOT_TOKEN }}

Container-Release:
Expand Down
1 change: 1 addition & 0 deletions backend/app/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ._version import __version__
1 change: 1 addition & 0 deletions backend/app/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.4.0"
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reev-frontend",
"version": "0.0.0",
"version": "0.4.0",
"private": true,
"scripts": {
"dev": "vite --port 8081",
Expand Down
8 changes: 8 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "simple",
"extra-files": [
"backend/app/_version.py",
"frontend/package.json"
]
}

0 comments on commit 5c0db23

Please sign in to comment.