Skip to content

Commit

Permalink
Added: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
djuarezgf committed May 17, 2024
1 parent 3ae2898 commit 85004fa
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
java-version: '17'

- name: Check out Git repository
uses: actions/checkout@v3
Expand All @@ -47,7 +47,7 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
java-version: '17'

- name: Check out Git repository
uses: actions/checkout@v3
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.0.1 - 2024-05-17]
### Added
- CI
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM eclipse-temurin:17-jre
ARG JAR_FILE=*.jar
COPY ${JAR_FILE} application.jar
ENTRYPOINT ["java", "-jar", "application.jar"]
4 changes: 0 additions & 4 deletions docker/Dockerfile

This file was deleted.

0 comments on commit 85004fa

Please sign in to comment.