Merge pull request #3685 from bcgov/renovate/actions-checkout-digest #112
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: 21.Build and Push Localdev Images | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- .github/workflows/build-push-localdev.yml | |
- localdev/** | |
env: | |
GITHUB_REGISTRY: ghcr.io | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-push-keycloak: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6 | |
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc | |
- name: Build and Push | |
uses: egose/actions/docker-build-push@a18ce5484959fe604bf4c29726334e54933d1ba9 | |
with: | |
registry-url: ${{ env.GITHUB_REGISTRY }} | |
registry-username: ${{ github.actor }} | |
registry-password: ${{ secrets.GITHUB_TOKEN }} | |
image-name: bcgov/pltsvc-localdev-keycloak | |
docker-context: localdev/keycloak | |
docker-file: localdev/keycloak/Dockerfile | |
metadata-tags: | | |
type=raw,value=latest | |
build-push-keycloak-provision: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6 | |
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc | |
- name: Build and Push | |
uses: egose/actions/docker-build-push@a18ce5484959fe604bf4c29726334e54933d1ba9 | |
with: | |
registry-url: ${{ env.GITHUB_REGISTRY }} | |
registry-username: ${{ github.actor }} | |
registry-password: ${{ secrets.GITHUB_TOKEN }} | |
image-name: bcgov/pltsvc-localdev-keycloak-provision | |
docker-context: localdev | |
docker-file: localdev/keycloak-provision/Dockerfile | |
metadata-tags: | | |
type=raw,value=latest | |
build-push-m365proxy: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6 | |
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc | |
- name: Build and Push | |
uses: egose/actions/docker-build-push@a18ce5484959fe604bf4c29726334e54933d1ba9 | |
with: | |
registry-url: ${{ env.GITHUB_REGISTRY }} | |
registry-username: ${{ github.actor }} | |
registry-password: ${{ secrets.GITHUB_TOKEN }} | |
image-name: bcgov/pltsvc-localdev-m365proxy | |
docker-context: localdev/m365proxy | |
docker-file: localdev/m365proxy/Dockerfile | |
metadata-tags: | | |
type=raw,value=latest | |
build-push-nats-provision: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6 | |
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc | |
- name: Build and Push | |
uses: egose/actions/docker-build-push@a18ce5484959fe604bf4c29726334e54933d1ba9 | |
with: | |
registry-url: ${{ env.GITHUB_REGISTRY }} | |
registry-username: ${{ github.actor }} | |
registry-password: ${{ secrets.GITHUB_TOKEN }} | |
image-name: bcgov/pltsvc-localdev-nats-provision | |
docker-context: localdev | |
docker-file: localdev/nats-provision/Dockerfile | |
metadata-tags: | | |
type=raw,value=latest |