From b196ce8c67f7075826b7aaf839ffb75367148935 Mon Sep 17 00:00:00 2001 From: Gauthier Date: Mon, 23 Sep 2019 11:16:44 +0800 Subject: [PATCH] [ci skip] --- .github/workflows/build_and_deploy.yml | 33 -------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/build_and_deploy.yml diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml deleted file mode 100644 index 205d1121..00000000 --- a/.github/workflows/build_and_deploy.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Deploy to DockerHub - -on: - push: - branches: - - master - paths: - - '*' -# - '!*.md' -# - '!.travis.yml' -# - '!./github/*/*' -# - '!./doc/*' -# - '!.idea/runConfigurations/*' - - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@master - - uses: actions/setup-java@v1 - with: - java-version: '1.8' - - run: ./gradlew build - - deploy_dockerhub: - name: Deploy to DockerHub - needs: build - runs-on: ubuntu-latest - - steps: - - run: echo Triggered by ${{ github.ref }}