Skip to content

Commit

Permalink
Initial workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric committed Jan 25, 2022
1 parent 3849cf7 commit 24f4144
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Docker Image Java-Goof

on:
push:
pull_request:

jobs:
build-todolist-image:
runs-on: ubuntu-latest
defaults:
run:
working-directory: todolist-goof
steps:
- uses: actions/checkout@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Build
uses: docker/build-push-action@v2
with:
context: todolist-goof
push: false
tags: java-goof:latest

build-log4shell-server-image:
runs-on: ubuntu-latest
defaults:
run:
working-directory: log4shell-goof/log4shell-server
steps:
- uses: actions/checkout@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Build
uses: docker/build-push-action@v2
with:
context: log4shell-goof/log4shell-server
push: false
tags: log4shell-server:latest

0 comments on commit 24f4144

Please sign in to comment.