Skip to content

Commit

Permalink
Debug 9
Browse files Browse the repository at this point in the history
  • Loading branch information
aurindam committed Sep 27, 2024
1 parent bd0ae96 commit 32bf538
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/typesense-scrape.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: Populate web server
run: |
docker exec nginx rm -rf /usr/share/nginx/html
if [ ${{ inputs.version == 'master' }} ]
path=snapshots/master/docs/slint
if [ "${{ inputs.version }}" == "master" ]; then
path="snapshots/master/docs/slint"
else
path=releases/${{ inputs.version }}/docs/slint
path="releases/${{ inputs.version }}/docs/slint"
fi
docker cp $path nginx:/usr/share/nginx/html
- name: test web server
Expand Down

0 comments on commit 32bf538

Please sign in to comment.