feat: pvp auto-match (#6) #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
services: | |
rabbitmq: | |
image: rabbitmq:3-management | |
ports: | |
- 5672:5672 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Copy config | |
run: cp ./server/src/main/resources/application.example.yml ./server/src/main/resources/application.yml | |
- name: Run test | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: test | |
- name: Move directory | |
run: | | |
mv server/build/coverage docs/coverage | |
mv server/build/reports/tests/test docs/test | |
- name: Push coverage report | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "github-actions" | |
git branch -D gh-pages || echo "Branch does not exist" | |
git checkout --orphan gh-pages | |
git rm --cached $(git ls-files) | |
git add docs/* | |
git commit -m "Update docs" | |
git push -f origin gh-pages |