From 90e78cbe5df190878c2c4af43c7afeebd3d5e615 Mon Sep 17 00:00:00 2001 From: Jason House Date: Thu, 21 May 2020 21:04:28 +0900 Subject: [PATCH] Moving files --- .github/actions/action.yml | 6 ------ .github/workflows/maven-build.yaml | 34 ------------------------------ 2 files changed, 40 deletions(-) delete mode 100644 .github/actions/action.yml delete mode 100644 .github/workflows/maven-build.yaml diff --git a/.github/actions/action.yml b/.github/actions/action.yml deleted file mode 100644 index 43ac078..0000000 --- a/.github/actions/action.yml +++ /dev/null @@ -1,6 +0,0 @@ -# action.yml -name: 'Run Gaps' -description: 'Greet someone and record the time' -runs: - using: 'docker' - image: 'Dockerfile' \ No newline at end of file diff --git a/.github/workflows/maven-build.yaml b/.github/workflows/maven-build.yaml deleted file mode 100644 index 861fe94..0000000 --- a/.github/workflows/maven-build.yaml +++ /dev/null @@ -1,34 +0,0 @@ -name: Build and Deploy - -on: [push] - -jobs: - build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [10.x] - - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 11 - uses: actions/setup-java@v1 - with: - java-version: 11.0.7 - - name: Build with Maven - run: mvn clean install spotbugs:check --file pom.xml - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - run: npm install - - uses: ./.github/actions/ - name: Build and push Docker image - with: - image: housewrecker/gaps - tag: 0.4.0-SNAPSHOT - registry: docker.io - dockerfile: Dockerfile - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }}