Skip to content

Commit

Permalink
Merge pull request #30 from swyp3-babpool/github/workflow
Browse files Browse the repository at this point in the history
chore(workflow): Update github actions workflow
  • Loading branch information
yeonjookang authored Mar 3, 2024
2 parents c72140c + 7748854 commit 9580f5c
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 9580f5c

Please sign in to comment.