Skip to content

Commit

Permalink
chore(workflow): Update github actions workflow delete application-te…
Browse files Browse the repository at this point in the history
…st.yml task
  • Loading branch information
proHyundo committed Mar 3, 2024
1 parent c72140c commit 7748854
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/github-actions-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,13 @@ jobs:
- name: Create application.yml, *.sql and log4jdbc.lof4j2.properties for test
run: |
mkdir -p ./src/test/resources/data
touch ./src/test/resources/application-test.yml
echo -e "${{secrets.APPLICATION_TEST}}" | base64 --decode > ./src/test/resources/application-test.yml
touch ./src/test/resources/data/data.sql
echo -e "${{secrets.DATA_SQL}}" | base64 --decode > ./src/test/resources/data/data.sql
touch ./src/test/resources/data/schema.sql
echo -e "${{secrets.SCHEMA_SQL}}" | base64 --decode > ./src/test/resources/data/schema.sql
touch ./src/test/resources/log4jdbc.log4j2.properties
echo -e "${{secrets.LOG4JDBC}}" | base64 --decode > ./src/test/resources/log4jdbc.log4j2.properties
- name: Upload application-test.yml for test
uses: actions/upload-artifact@v3
with:
name: application-test.yml
path: ./src/test/resources/application-test.yml
retention-days: 1

- name: Upload data.sql for test
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 7748854

Please sign in to comment.