Add github action

This commit is contained in:
Alexander Hofbauer 2021-04-26 11:34:06 +02:00 committed by GitHub
parent ce96de1d2b
commit bd859cd0b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/docker-image.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Docker Image CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set version
id: version
run: echo ::set-output name=release_version::${GITHUB_REF#refs/*/}
- name: Build Docker image
run: |
echo Building version ${{ steps.version.outputs.release_version }}...
docker build . --file Dockerfile --tag alehoho/oo-ce-docker-license:${{ steps.version.outputs.release_version }}