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

61 lines
1.5 KiB
YAML
Raw Normal View History

2023-04-14 11:47:24 +02:00
name: Build CKAN Docker auxiliary images - master
2021-05-10 16:27:16 +02:00
2021-05-11 16:23:36 +02:00
on:
2023-04-14 11:47:24 +02:00
# Trigger the workflow on push or pull request
2021-05-11 16:23:36 +02:00
push:
2023-04-14 11:47:24 +02:00
branches: ['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@v3
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@v2
2021-05-13 15:32:54 +02:00
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
2021-05-11 14:39:42 +02:00
2021-05-13 16:42:11 +02:00
- name: NGINX build
uses: docker/build-push-action@v4
2021-05-13 16:42:11 +02:00
with:
context: ./nginx
file: ./nginx/Dockerfile
push: false
tags: mjanez/ckan-docker-nginx:test-build-only
- name: Apache HTTP Server build
uses: docker/build-push-action@v4
with:
context: ./apache
file: ./apache/Dockerfile
push: false
tags: mjanez/ckan-docker-apache:test-build-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@v4
2021-05-13 16:42:11 +02:00
with:
context: ./postgresql
file: ./postgresql/Dockerfile
push: false
tags: mjanez/ckan-docker-postgresql:test-build-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@v4
2021-05-13 16:42:11 +02:00
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: mjanez/ckan-docker-solr:test-build-only
- name: ckan-pycsw build
uses: docker/build-push-action@v4
with:
context: ./ckan-pycsw
file: ./ckan-pycsw/Dockerfile
push: false
tags: mjanez/ckan-docker-pycsw:test-build-only