Skip to content

Commit

Permalink
docs: add development.md
Browse files Browse the repository at this point in the history
Signed-off-by: Josef Andersson <[email protected]>
  • Loading branch information
janderssonse committed Jan 29, 2025
1 parent 1d43677 commit d8abf9e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ SPDX-License-Identifier: EUPL-1.2

A PoC Library to support different token formats for EUDI wallet such as SD-JWT and mDL

TO-DO: Add documentation
TO-DO: Add documentation

[Development](./docs/DEVELOPMENT.md)
1 change: 1 addition & 0 deletions REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ path = [
"renovate.json",
"src/test/resources/simplelogger.properties",
"CHANGELOG.md",
"docs/DEVELOPMENT.md",
"jreleaser.yml",
"README.md",
]
Expand Down
22 changes: 22 additions & 0 deletions docs/DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Development Guide Lines

TO-DO

## Tag and Release a new version

Activate the GH-workflow with a tag and push

Example:

```shell
git tag -s v0.0.3-SNAPSHOT -m 'v0.0.3-SNAPSHOT'
git push origin tag v0.0.3
```

Currently only publishing to GitHub-packages

## Run same code quality tests locally as in CI

```shell
./developement/codequality.sh
```
2 changes: 1 addition & 1 deletion jreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ release:
github:
owner: diggsweden
overwrite: true # Allows updating existing releases
draft: true # Creates as final release, not draft
draft: false # Creates as final release, not draft
sign: true # Signs release assets
branch: main
changelog:
Expand Down

0 comments on commit d8abf9e

Please sign in to comment.