Update .gitea/workflows/deploy.yml
11ty build and deploy for ${{ gitea.repository }} / build-deploy (push) Failing after 21s Details

This commit is contained in:
suroh 2024-04-16 11:06:06 +00:00
parent 26792fcfdf
commit 437ef394e7
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
container:
volumes:
- /www:/www
- /var/www:/www
steps:
- name: Clone code to runner
uses: actions/checkout@v4
@ -24,7 +24,7 @@ jobs:
run: npm run build
- name: Check folders
run: ls -lh /www
run: ls -lh /
- name: Create folder if needed
run: if [ ! -d /www/${{ gitea.event.repository.name }} ]; then mkdir /www/${{ gitea.event.repository.name }}; fi