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

39 lines
917 B
YAML
Raw Normal View History

name: Build CKAN Docker auxiliary images
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
2022-11-30 12:12:51 +01:00
tags: kowhai/ckan-docker-nginx: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@v2
with:
context: ./postgresql
file: ./postgresql/Dockerfile
push: false
2023-04-02 01:43:35 +02:00
tags: kowhai/ckan-docker-postgresql:test-build-only