Skip to content

Commit 1ff1b41

Browse files
committed
chore: remove outdated GitHub Actions workflow for building and publishing Auth UI Docker image
1 parent d5ea1c2 commit 1ff1b41

3 files changed

Lines changed: 40 additions & 75 deletions

File tree

.github/workflows/build-authui.yml

Lines changed: 0 additions & 74 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Publish Auth UI
2+
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'docs/**'
7+
- 'README.md'
8+
9+
release:
10+
types: ['published']
11+
12+
jobs:
13+
check-files:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v5
18+
19+
publish-container-image:
20+
permissions:
21+
id-token: write
22+
contents: read
23+
packages: write
24+
attestations: write
25+
uses: datum-cloud/actions/.github/workflows/publish-docker.yaml@v1.6.5
26+
with:
27+
image-name: auth-ui
28+
secrets: inherit
29+
30+
publish-kustomize-bundles:
31+
permissions:
32+
id-token: write
33+
contents: read
34+
packages: write
35+
uses: datum-cloud/actions/.github/workflows/publish-kustomize-bundle.yaml@1.6.5
36+
with:
37+
bundle-name: ghcr.io/datum-cloud/auth-ui-kustomize
38+
bundle-path: config
39+
secrets: inherit

scripts/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ if [ -n "${ZITADEL_SERVICE_USER_TOKEN_FILE}" ] && [ -f "${ZITADEL_SERVICE_USER_T
88
export ZITADEL_SERVICE_USER_TOKEN=$(cat "${ZITADEL_SERVICE_USER_TOKEN_FILE}")
99
fi
1010

11-
exec node /runtime/apps/login/server.js
11+
exec node /runtime/server.js

0 commit comments

Comments
 (0)