Add creation of empty secret file

This commit is contained in:
Marian Steinbach 2022-10-20 22:52:41 +02:00
parent 2fb9b5f863
commit 449060650a

View file

@ -9,6 +9,10 @@ jobs:
- uses: actions/checkout@v3
- name: Build Docker image
run: make dockerimage
- name: Create placeholder secrets
run: |
mkdir ./secrets
echo "{}" >> ./secrets/screenshots-uploader.json
- name: Run tests in Docker image
run: make test
# - name: Set up Python ${{ matrix.python-version }}