Moving files

This commit is contained in:
Jason House
2020-05-21 21:04:28 +09:00
parent c883701585
commit 90e78cbe5d
2 changed files with 0 additions and 40 deletions

View File

@@ -1,6 +0,0 @@
# action.yml
name: 'Run Gaps'
description: 'Greet someone and record the time'
runs:
using: 'docker'
image: 'Dockerfile'

View File

@@ -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 }}