Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: docker image #143

Merged
merged 1 commit into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,15 @@ jobs:
${{ runner.os }}-maven-

- name: Build
run: mvn clean compile --file pom.xml
run: mvn clean compile

- name: Test
run: mvn test --file pom.xml

- name: Removing -SNAPSHOT
run: mvn versions:set -DremoveSnapshot
run: mvn test

- name: Publish artifact on GitHub Packages
run: mvn deploy -DskipTests
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish Docker image
uses: MathieuSoysal/jib-container-publish.yml@v2.1.5
with:
PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: mvn compile jib:build
4 changes: 2 additions & 2 deletions .github/workflows/on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
${{ runner.os }}-maven-

- name: Build
run: mvn clean compile --file pom.xml
run: mvn clean compile

- name: Test
run: mvn test --file pom.xml
run: mvn test --file
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.13.1] - 31-03-2024
## [1.13.1] - 01-04-2024

### Changed

- Change action to publish docker image

## [1.13.1] - 01-04-2024

### Added

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<groupId>com.eliasogueira.credit</groupId>
<artifactId>combined-credit-api</artifactId>
<version>1.13.1-SNAPSHOT</version>
<version>1.13.2</version>

<distributionManagement>
<repository>
Expand Down
Loading