From c31c8308e80db5340113670914b42e333757df9f Mon Sep 17 00:00:00 2001 From: wlanboy Date: Mon, 13 Apr 2020 10:02:03 +0200 Subject: [PATCH] Delete dockerimage.yml --- .github/workflows/dockerimage.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/dockerimage.yml diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml deleted file mode 100644 index 5657bc6..0000000 --- a/.github/workflows/dockerimage.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Docker build and publish image -on: - watch: - types: [started] -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 11 - if: github.actor == github.event.repository.owner.login - uses: actions/setup-java@v1 - with: - java-version: 11 - - name: Build with Maven - run: mvn -B package --file pom.xml -DskipTests=true - - - uses: actions/checkout@master - - name: Publish to Registry - if: github.actor == github.event.repository.owner.login - uses: elgohr/Publish-Docker-Github-Action@master - env: - JAR_FILE: ./target/mirrorservice-0.1.1-SNAPSHOT.jar - with: - name: wlanboy/mirrorservice - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - tags: "latest"