Skip to content

Commit

Permalink
Fix post backport
Browse files Browse the repository at this point in the history
Signed-off-by: Benoit Donneaux <benoit@leastauthority.com>
  • Loading branch information
btlogy committed Feb 2, 2024
1 parent 4dc0e3f commit 54b3ba8
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,15 @@ jobs:
# Build image if client is missing
test $CLIENT -eq 0 || \
docker compose --progress plain -f docker-compose.yml -f docker-compose.e2e.yml --profile e2e \
build --build-arg uid=$(id -u) --build-arg gid=${_GID} \
client
build --build-arg uid=$(id -u) --build-arg gid=${_GID} client
- name: Prepare containers
run: |
docker compose build --build-arg uid="$(id -u)" --build-arg gid="$(id -g)"
docker compose run client npm i
docker compose build --build-arg uid="$(id -u)" --build-arg gid="$(id -g)" client
docker compose run --no-deps client npm i
- name: Deploy package
run: docker compose run client npm run deploy
run: docker compose run --no-deps client npm run deploy

- name: Stop containers
run: docker compose down

0 comments on commit 54b3ba8

Please sign in to comment.