1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-04-19 17:26:51 +00:00

Full setup for docker build

This commit is contained in:
Paul-Christian Volkmer 2023-08-10 18:07:25 +02:00
parent d24d9a7fd0
commit 2ec5e27a40
2 changed files with 12 additions and 3 deletions

View File

@ -2,16 +2,24 @@ name: "Run docker build and deploy"
on: on:
push: push:
tags: tags: [ '*' ]
- '*'
jobs: jobs:
call-test-workflow: test:
uses: ./.github/workflows/test.yml uses: ./.github/workflows/test.yml
docker: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2.4.2
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2

View File

@ -4,6 +4,7 @@ on:
workflow_call: workflow_call:
push: push:
branches: [ 'master' ] branches: [ 'master' ]
tags-ignore: [ '*' ]
pull_request: pull_request:
branches: [ '*' ] branches: [ '*' ]