mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 13:40:20 +00:00
c2b2f13119
Not only a change to the docker file, also changes to the yaml files should trigger rebuilds. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
35 lines
907 B
YAML
35 lines
907 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- scripts/docker/trusty-qt512/Dockerfile
|
|
- .github/workflows/linux-docker*
|
|
|
|
jobs:
|
|
trusty-qt512:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
VERSION: ${{ '0.7' }} # just assigning a number wouldn't get you a string
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Get our pre-reqs
|
|
run: |
|
|
cd scripts/docker/trusty-qt512
|
|
bash getpackages.sh
|
|
|
|
- name: set env
|
|
run: |
|
|
v=${{ env.VERSION }}
|
|
echo "::set-env name=NAME::subsurface/trusty-qt512:${v}"
|
|
|
|
- name: Build and Publish Linux Docker image to Dockerhub
|
|
uses: elgohr/Publish-Docker-Github-Action@master
|
|
with:
|
|
name: ${{ env.NAME }}
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
dockerfile: 'Dockerfile'
|
|
workdir: './scripts/docker/trusty-qt512/'
|