feat: Upgrade client to version 7 as per latest build steps https://w… #20
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: Test Client Build with docker | |
on: | |
push: | |
paths: | |
- client/** | |
- client/clientbuildtest.Dockerfile | |
- .github/workflows/test-client-build-docker.yml | |
branches: [ "development" ] | |
pull_request: | |
branches: [ "development" ] | |
paths: | |
- client/** | |
- client/clientbuildtest.Dockerfile | |
- .github/workflows/test-client-build-docker.yml | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Client | |
run: | | |
cd client | |
DOCKER_BUILDKIT=1 docker build . --file clientbuildtest.Dockerfile --output build --tag client:$(date +%s) |