diff options
| author | MohamedBassem <me@mbassem.com> | 2024-04-02 16:42:53 +0100 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-04-02 16:42:53 +0100 |
| commit | c206aa254c39175812c0e1d0e012a6a841ea5d50 (patch) | |
| tree | 26fd1b2b33528b33b735fdcd0d2a3e93ed39c887 /.github/workflows | |
| parent | d02fa5056a07dee699cd4b3868c2ffb673c133c2 (diff) | |
| download | karakeep-c206aa254c39175812c0e1d0e012a6a841ea5d50.tar.zst | |
feature: Include server version in the admin UI. Fixes #66
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docker.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b9e83afa..d6de38fd 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -32,6 +32,7 @@ jobs: uses: docker/build-push-action@v5 with: context: . + build-args: SERVER_VERSION=nightly file: docker/Dockerfile target: ${{ matrix.package }} platforms: linux/amd64,linux/arm64 @@ -45,6 +46,7 @@ jobs: if: github.event_name == 'release' with: context: . + build-args: SERVER_VERSION=${{ github.event.release.name }} file: docker/Dockerfile target: ${{ matrix.package }} platforms: linux/amd64,linux/arm64 |
