Skip to content

Commit

Permalink
Update DEBUG.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SalkCoding authored Dec 12, 2024
1 parent 08b094f commit 472cf72
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/DEBUG.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: test
run: |
export test=testValue
echo $test
echo "$test"
- name: checkout code
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: cat ./src/main/resources/application.yml
- run: |
mkdir -p ./src/main/resources
touch ./src/main/resources/application.yml
echo "$APPLICATION_YML" > src/main/resources/application.yml
cat ./src/main/resources/application.yml

0 comments on commit 472cf72

Please sign in to comment.