Converto to GitHub actions (#364)

This commit is contained in:
Sandro
2021-01-26 19:43:14 +01:00
committed by GitHub
parent ac6d647ddd
commit 3e736968d1
5 changed files with 104 additions and 55 deletions

45
.github/workflows/docker.yml vendored Normal file
View File

@@ -0,0 +1,45 @@
name: Docker build & push
on:
pull_request:
push:
branches: master
jobs:
old-version:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ 0.18, 0.17, 0.16, 0.15, 0.14 ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: build
env:
VERSION_SHORT: ${{ matrix.version }}
run: |
./build.sh ${{ matrix.version }}
stable:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: build
env:
EXTRA_TAG: stable
VERSION_SHORT: 1.0
run: |
./build.sh $VERSION_SHORT
experimental:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: build
env:
EXTRA_TAG: latest
VERSION_SHORT: 1.1
run: |
./build.sh $VERSION_SHORT