docker-ckan/.github/workflows/build.yml

64 lines
1.5 KiB
YAML
Raw Normal View History

2021-05-10 16:42:51 +02:00
name: Build CKAN Docker
2021-05-10 16:27:16 +02:00
2021-05-11 16:23:36 +02:00
on:
# Trigger the workflow on push or pull request,
2021-05-11 16:26:55 +02:00
# but only for the master branch
2021-05-11 16:23:36 +02:00
push:
branches:
2021-05-11 16:26:55 +02:00
- master
2021-05-11 16:23:36 +02:00
pull_request:
branches:
2021-05-11 16:26:55 +02:00
- master
2021-05-10 16:27:16 +02:00
2021-05-10 16:12:06 +02:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-05-11 14:39:42 +02:00
2021-05-11 14:42:07 +02:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
2021-05-13 15:32:54 +02:00
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
2021-05-11 14:39:42 +02:00
2021-05-13 16:42:11 +02:00
- name: NGINX build
uses: docker/build-push-action@v2
with:
context: ./nginx
file: ./nginx/Dockerfile
push: false
tags: kowhai/ckan-docker-nginx:testing-only
2021-05-13 10:09:15 +02:00
2021-05-13 16:42:11 +02:00
- name: PostgreSQL build
uses: docker/build-push-action@v2
with:
context: ./postgresql
file: ./postgresql/Dockerfile
push: false
tags: kowhai/ckan-docker-postgresql:testing-only
2021-05-13 10:09:15 +02:00
2021-05-13 16:42:11 +02:00
- name: Solr build
uses: docker/build-push-action@v2
with:
2021-05-13 16:43:01 +02:00
context: ./solr
2021-05-13 16:42:11 +02:00
file: ./solr/Dockerfile
push: false
tags: kowhai/ckan-docker-solr:testing-only
2021-05-13 10:09:15 +02:00
2021-05-13 16:42:11 +02:00
- name: DataPusher build
uses: docker/build-push-action@v2
with:
context: ./datapusher
file: ./datapusher/Dockerfile
push: false
tags: kowhai/ckan-docker-datapusher:testing-only
2021-05-11 14:47:24 +02:00
- name: CKAN build
2021-05-13 13:41:26 +02:00
uses: docker/build-push-action@v2
2021-05-11 14:47:24 +02:00
with:
2021-05-13 16:35:57 +02:00
context: ./ckan
2021-05-13 11:28:05 +02:00
file: ./ckan/Dockerfile
2021-05-13 16:35:57 +02:00
push: false
2021-05-11 14:47:24 +02:00
tags: kowhai/ckan-docker-ckan:testing-only
2021-05-11 15:23:18 +02:00