mirror of
https://github.com/JasonHHouse/gaps.git
synced 2026-01-07 03:19:46 -06:00
Moving files
This commit is contained in:
6
.github/actions/action.yml
vendored
6
.github/actions/action.yml
vendored
@@ -1,6 +0,0 @@
|
||||
# action.yml
|
||||
name: 'Run Gaps'
|
||||
description: 'Greet someone and record the time'
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
34
.github/workflows/maven-build.yaml
vendored
34
.github/workflows/maven-build.yaml
vendored
@@ -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 }}
|
||||
Reference in New Issue
Block a user