Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
aliavni committed Apr 19, 2024
1 parent 8b8aaa8 commit 1ff6985
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ jobs:
- name: Create .env file
env:
ENV_FILE_CONTENTS: ${{ secrets.ENV_FILE_CONTENTS }}
run: pwd && touch /home/runner/work/docker/docker/.env && echo ${ENV_FILE_CONTENTS} >> /home/runner/work/docker/docker/.env && ls -al
run: |
pwd && \
touch /home/runner/work/docker/docker/.env && \
echo ${ENV_FILE_CONTENTS} >> /home/runner/work/docker/docker/.env && \
cat /home/runner/work/docker/docker/.env && \
ls -al /home/runner/work/
- uses: actions/checkout@v3
- name: Build the docker-compose stack
Expand Down

0 comments on commit 1ff6985

Please sign in to comment.