Skip to content

Commit

Permalink
Update test-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
markusweigelt authored Sep 6, 2023
1 parent 7eb4451 commit 837243e
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,17 @@ jobs:
- name: Checkout repository and submodules
uses: actions/checkout@v3

- name: Rename .env.example to .env
run: mv .env.example .env
- name: Prepare
run: |
# Rename example .env file
mv .env.example .env
# Set environment variables from .env file
export $(cat .env | xargs)
# Generate ssh keys
mkdir -p ./ssh
ssh-keygen -t rsa -q -f $MANAGER_KEY -P '' -C 'OCR-D manager key'

- name: Docker Compose build
run: docker compose build
Expand Down

0 comments on commit 837243e

Please sign in to comment.