Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kimdw0823 authored Nov 15, 2024
1 parent 6fe414d commit 199cff8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,22 @@ permissions:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'

- name: Create resource directories
run: |
mkdir -p src/main/resources
mkdir -p src/test/resources
- name: Set up secret yml file
env:
YAML_SECRET: ${{ secrets.YAML_SECRET }}
Expand All @@ -31,9 +36,7 @@ jobs:
run: |
echo $YAML_SECRET | base64 --decode > $YAML_DIR/$YAML_FILE_NAME
echo $YAML_SECRET | base64 --decode > $YAML_TEST_DIR/$YAML_FILE_NAME
echo "YAML_SECRET has been decoded and saved to $YAML_DIR/$YAML_FILE_NAME"
echo "YAML_SECRET has been decoded and saved to $YAML_TEST_DIR/$YAML_FILE_NAME"
- name: Start Redis
uses: supercharge/[email protected]
with:
Expand Down

0 comments on commit 199cff8

Please sign in to comment.