diff --git a/.github/workflows/DEBUG.yml b/.github/workflows/DEBUG.yml index 7666226..05a3971 100644 --- a/.github/workflows/DEBUG.yml +++ b/.github/workflows/DEBUG.yml @@ -11,13 +11,13 @@ jobs: - name: test run: | export test=testValue - echo $APPLICATION_YML - echo "$APPLICATION_YML" + echo ${{vars.APPLICATION_YML}} + echo "${{vars.APPLICATION_YML}}" - name: checkout code uses: actions/checkout@v3 - run: | mkdir -p ./src/main/resources touch ./src/main/resources/application.yml - echo "$APPLICATION_YML" > src/main/resources/application.yml + echo "${{vars.APPLICATION_YML}}" > src/main/resources/application.yml cat ./src/main/resources/application.yml