We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa5e89a commit 1578402Copy full SHA for 1578402
1 file changed
.github/workflows/publish.yml
@@ -43,7 +43,7 @@ jobs:
43
coverage: none
44
45
- name: Composer install
46
- uses: "ramsey/composer-install@v2"
+ uses: "ramsey/composer-install@v4"
47
48
- name: JS install
49
run: |
@@ -56,9 +56,15 @@ jobs:
56
57
58
- name: Upload artifact
59
- uses: actions/upload-pages-artifact@v5
+ uses: actions/upload-artifact@v7
60
+ id: artifact-upload-step
61
with:
62
+ name: website
63
path: build_production/
64
+ retention-days: 2
65
+
66
+ - name: Output artifact ID
67
+ run: echo 'Artifact ID is ${{ steps.artifact-upload-step.outputs.artifact-id }}'
68
69
# Deployment job
70
deploy:
0 commit comments