diff --git a/.github/workflows/CD.yaml b/.github/workflows/CD.yaml index 6e3da6b..b5da545 100644 --- a/.github/workflows/CD.yaml +++ b/.github/workflows/CD.yaml @@ -12,9 +12,12 @@ jobs: uses: actions/checkout@v3 - run: mkdir -p ./src/main/resources - run: touch ./src/main/resources/application.yml - - run: echo $APPLICATION_YML > src/main/resources/application.yml + - run: echo "$APPLICATION_YML" > src/main/resources/application.yml - run: cat ./src/main/resources/application.yml + - name: Debug APPLICATION_YML + run: echo "$APPLICATION_YML" + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1