2 Commits

Author SHA1 Message Date
c42b8b1bda Merge branch 'main' of ssh://gitea.communiquons.org:52001/pierre/MoneyMgr
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-05-19 18:36:50 +02:00
bdcbe94c97 Add api_curl to release 2025-05-19 18:36:34 +02:00
3 changed files with 950 additions and 26 deletions

View File

@ -38,6 +38,7 @@ steps:
- cd moneymgr_backend
- rustup component add clippy
- cargo clippy -- -D warnings
- cargo clippy --example api_curl -- -D warnings
- name: backend_test
image: rust
@ -51,7 +52,7 @@ steps:
- cargo test
- name: backend_compile
- name: backend_build
image: rust
volumes:
- name: rust_registry
@ -67,15 +68,16 @@ steps:
- cd moneymgr_backend
- mv /tmp/web_build/dist static
- cargo build --release
- ls -lah target/release/moneymgr_backend
- cp target/release/moneymgr_backend /tmp/release
- cargo build --release --example api_curl
- ls -lah target/release/moneymgr_backend target/release/examples/api_curl
- cp target/release/moneymgr_backend target/release/examples/api_curl /tmp/release
# Release
- name: gitea_release
image: plugins/gitea-release
depends_on:
- backend_compile
- backend_build
when:
event:
- tag

File diff suppressed because it is too large Load Diff

View File

@ -36,7 +36,7 @@
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.27.0",
"eslint": "^9.26.0",
"eslint-plugin-react-dom": "^1.49.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^00.4.20",