Skip to content

Commit

Permalink
Fixed reference to secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
ckulka committed Apr 20, 2024
1 parent 6f09043 commit 8d18d64
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ on:
description: Tags to apply to the image
required: true
type: string
secrets:
DOCKERHUB_USERNAME:
description: DockerHub username
required: true
DOCKERHUB_PASSWORD:
description: DockerHub password
required: true

jobs:
build:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
tags: |
ckulka/baikal:experimental-apache
ckulka/baikal:experimental
secrets: inherit

apache_release:
name: Apache (release)
Expand All @@ -49,6 +50,7 @@ jobs:
ckulka/baikal:${{ needs.parse_release_tag.outputs.tag }}
ckulka/baikal:apache
ckulka/baikal:latest
secrets: inherit

apache_experimental_php82:
name: Apache + PHP 8.2 (experimental)
Expand All @@ -59,6 +61,7 @@ jobs:
tags: |
ckulka/baikal:experimental-apache-php8.2
ckulka/baikal:experimental-php8.2
secrets: inherit

apache_release_php82:
name: Apache + PHP 8.2 (release)
Expand All @@ -70,6 +73,7 @@ jobs:
ckulka/baikal:${{ needs.parse_release_tag.outputs.tag }}-apache-php8.2
ckulka/baikal:${{ needs.parse_release_tag.outputs.tag }}-php8.2
ckulka/baikal:apache-php8.2
secrets: inherit

nginx_experimental:
name: Nginx (experimental)
Expand All @@ -78,6 +82,7 @@ jobs:
with:
dockerfile: nginx.dockerfile
tags: ckulka/baikal:experimental-nginx
secrets: inherit

nginx_release:
name: Apache (release)
Expand All @@ -88,6 +93,7 @@ jobs:
tags: |
ckulka/baikal:${{ needs.parse_release_tag.outputs.tag }}-nginx
ckulka/baikal:nginx
secrets: inherit

nginx_experimental_php82:
name: Apache + PHP 8.2 (experimental)
Expand All @@ -96,6 +102,7 @@ jobs:
with:
dockerfile: nginx-php8.2.dockerfile
tags: ckulka/baikal:experimental-nginx-php8.2
secrets: inherit

nginx_release_php82:
name: Apache + PHP 8.2 (release)
Expand All @@ -104,3 +111,4 @@ jobs:
with:
dockerfile: nginx-php8.2.dockerfile
tags: ckulka/baikal:${{ needs.parse_release_tag.outputs.tag }}-nginx-php8.2
secrets: inherit

0 comments on commit 8d18d64

Please sign in to comment.