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

61 lines
1.4 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,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
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-11 14:39:42 +02:00
2021-05-11 14:47:24 +02:00
- name: NGINX build
2021-05-11 14:39:42 +02:00
uses: docker/build-push-action@v2
with:
context: nginx
file: nginx/Dockerfile
push: false
tags: kowhai/ckan-docker-nginx:testing-only
2021-05-11 14:42:07 +02:00
2021-05-11 14:47:24 +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
- name: Solr build
uses: docker/build-push-action@v2
with:
context: solr
file: solr/Dockerfile
push: false
tags: kowhai/ckan-docker-solr:testing-only
- name: DataPusher build
uses: docker/build-push-action@v2
with:
context: datapusher
file: datapusher/Dockerfile
push: false
tags: kowhai/ckan-docker-datapusher:testing-only
- name: CKAN build
uses: docker/build-push-action@v2
with:
context: ckan
file: ckan/Dockerfile
push: false
tags: kowhai/ckan-docker-ckan:testing-only
2021-05-11 15:23:18 +02:00