Skip to content

Commit

Permalink
Better formatting for the ci docker run command
Browse files Browse the repository at this point in the history
  • Loading branch information
Earlopain committed Oct 7, 2023
1 parent ed19b79 commit da72d21
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/prepare-docker-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,14 @@ runs:
tags: reverser:test

- name: Set docker run command
run: echo "DOCKER_RUN=docker run --rm --network host -e POSTGRES_HOST=localhost -e EXPOSED_VNC_PORT=123 -e RAILS_ENV=test -e CI=true -v $PWD:/app reverser:test" >> "$GITHUB_ENV"
run: >
echo "DOCKER_RUN=docker run
--rm
--network host
-e POSTGRES_HOST=localhost
-e EXPOSED_VNC_PORT=123
-e RAILS_ENV=test
-e CI=true
-v $PWD:/app reverser:test
">> "$GITHUB_ENV"
shell: bash

0 comments on commit da72d21

Please sign in to comment.