Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
feat: setup application.yml at action
Browse files Browse the repository at this point in the history
  • Loading branch information
seu1a committed Aug 26, 2024
1 parent 06bb0c5 commit 7c40807
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/azure-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,22 @@ jobs:
uses: actions/checkout@v4

- uses: actions/checkout@v3
- name: Set up JDK 17
- run: mkdir -p ./src/main/resources
- run: touch ./src/main/resources/application.yml
- run: echo "${{ secrets.APPLICATION }}" > ./src/main/resources/application.yml
- run: cat ./src/main/resources/application.yml

- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
java-version: "21"
distribution: "zulu"
- name: Build with Gradle
run: |
cd server
./gradlew build -x test
- name: Install azd
uses: Azure/[email protected]

Expand Down

0 comments on commit 7c40807

Please sign in to comment.