.gitea/workflows/deploy.yml aktualisiert
Deployment / lint (push) Successful in 52s
Deployment / test (push) Successful in 55s
Deployment / build (push) Successful in 1m1s
Deployment / deploy (push) Failing after 1m37s

This commit is contained in:
2023-07-27 15:00:48 +02:00
parent 88d58c469c
commit 7817eddbe5
+8 -2
View File
@@ -84,10 +84,16 @@ jobs:
run: npm ci
- name: Build website
run: npm run build
- name: Package Artifacts
uses: https://github.com/thedoctor0/zip-release@0.7.1
with:
type: 'tar'
path: dist
filename: 'dist.tar.gz'
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: dist-files
name: dist.tar.gz
path: dist
deploy:
needs: build
@@ -98,7 +104,7 @@ jobs:
- name: Get build artifacts
uses: actions/download-artifact@v3
with:
name: dist-files
name: dist.tar.gz
path: ./dist
- name: Output contents
run: ls