🔧 Build Proxy Images #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🔧 Build Proxy Images | |
on: | |
# Trigger on schedule | |
schedule: | |
# Run 2:00 on 1st and 15th of every month | |
- cron: "0 2 1,15 * *" | |
# Allow manual trigger | |
workflow_dispatch: | |
jobs: | |
build-cert-init-main: | |
uses: hotosm/gh-workflows/.github/workflows/[email protected] | |
with: | |
context: nginx | |
build_target: certs-init-main | |
image_tags: | | |
"ghcr.io/${{ github.repository }}/proxy:certs-init-main" | |
extra_build_args: | | |
NGINX_TAG=${{ vars.NGINX_TAG }} | |
multi_arch: true | |
build-cert-init-dev: | |
uses: hotosm/gh-workflows/.github/workflows/[email protected] | |
with: | |
context: nginx | |
build_target: certs-init-development | |
image_tags: | | |
"ghcr.io/${{ github.repository }}/proxy:certs-init-development" | |
"ghcr.io/${{ github.repository }}/proxy:certs-init-staging" | |
extra_build_args: | | |
NGINX_TAG=${{ vars.NGINX_TAG }} | |
multi_arch: true | |
build-proxy-main: | |
uses: hotosm/gh-workflows/.github/workflows/[email protected] | |
with: | |
context: nginx | |
build_target: main | |
image_tags: | | |
"ghcr.io/${{ github.repository }}/proxy:main" | |
extra_build_args: | | |
NGINX_TAG=${{ vars.NGINX_TAG }} | |
multi_arch: true | |
build-proxy-dev: | |
uses: hotosm/gh-workflows/.github/workflows/[email protected] | |
with: | |
context: nginx | |
build_target: development | |
image_tags: | | |
"ghcr.io/${{ github.repository }}/proxy:development" | |
"ghcr.io/${{ github.repository }}/proxy:staging" | |
extra_build_args: | | |
NGINX_TAG=${{ vars.NGINX_TAG }} | |
multi_arch: true |