Removed lots of unused code (especially unused API endpoints) #9
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: Java CI | |
on: | |
push: | |
branches: | |
- master | |
- development | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 13 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 13 | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml | |
- uses: nelonoel/[email protected] | |
- name: Build & Push to Docker Hub | |
uses: zenato/[email protected] | |
with: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
registry: "docker.pkg.github.com" | |
repository: hbtgmbh/pwr-skill-service/pwr-skill-service | |
tag: ${{env.BRANCH_NAME}} |