Skip to content

Commit

Permalink
Last commit. See you soon!
Browse files Browse the repository at this point in the history
  • Loading branch information
Pelayori committed Apr 29, 2024
1 parent 2021cd1 commit 066146d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,25 @@ jobs:
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
# steps:
steps:
- uses: actions/checkout@v2
# - name: Cache Maven packages
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: |
~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-m2
# - name: Set up JDK 17
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: '17'
# - name: Add exec permission to mvnw
- name: Add exec permission to mvnw
run: chmod +x mvnw
# - name: Compile the application
- name: Compile the application
run: ./mvnw -B clean install -DskipTests=true
# - name: Start the application
- name: Start the application
run: |
./mvnw spring-boot:run > logs.txt 2>&1 &
echo $! > spring-boot-app.pid
Expand Down

0 comments on commit 066146d

Please sign in to comment.