Skip to content

Commit cce87e1

Browse files
authored
Merge pull request #13 from FortnoxAB/manual-release
Manual release preparations
2 parents effcbaf + 6b11e5a commit cce87e1

16 files changed

Lines changed: 74 additions & 208 deletions

File tree

.changeset/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.1
1+
0.1.0

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,3 +480,17 @@ ij_properties_align_group_field_declarations = false
480480
ij_properties_keep_blank_lines = false
481481
ij_properties_key_value_delimiter = equals
482482
ij_properties_spaces_around_key_value_delimiter = false
483+
484+
[{*.yaml,*.yml}]
485+
indent_size = 2
486+
ij_yaml_align_values_properties = do_not_align
487+
ij_yaml_autoinsert_sequence_marker = true
488+
ij_yaml_block_mapping_on_new_line = false
489+
ij_yaml_indent_sequence_value = true
490+
ij_yaml_keep_indents_on_empty_lines = false
491+
ij_yaml_keep_line_breaks = true
492+
ij_yaml_sequence_on_new_line = false
493+
ij_yaml_space_before_colon = false
494+
ij_yaml_spaces_within_braces = true
495+
ij_yaml_spaces_within_brackets = true
496+
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will build a package using Maven and then publish it to GitHub packages
2+
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
3+
name: Deploy
4+
5+
on:
6+
workflow_dispatch
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
packages: write
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Set up JDK 17
19+
uses: actions/setup-java@v4
20+
with:
21+
java-version: '17'
22+
distribution: 'temurin'
23+
server-id: github
24+
settings-path: ${{ github.workspace }}
25+
26+
- name: Build with Maven
27+
run: ./mvnw --batch-mode --no-transfer-progress package --file pom.xml
28+
29+
- name: Publish to GitHub Packages Apache Maven
30+
run: ./mvnw --batch-mode deploy -s $GITHUB_WORKSPACE/settings.xml
31+
env:
32+
GITHUB_TOKEN: ${{ github.token }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ target/
44
!**/src/test/**/target/
55

66
### IntelliJ IDEA ###
7+
.idea
78
.idea/modules.xml
89
.idea/jarRepositories.xml
910
.idea/compiler.xml

.idea/.gitignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

.idea/checkstyle-idea.xml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/encodings.xml

Lines changed: 0 additions & 11 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.idea/sonarlint.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)