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 6b1f96a commit 7d073f2Copy full SHA for 7d073f2
1 file changed
.github/workflows/reports.yml
@@ -53,11 +53,17 @@ jobs:
53
command: 'dev-tools'
54
args: 'reports'
55
56
+ - name: Fix permissions
57
+ run: |
58
+ chmod -c -R +rX "public/" | while read line; do
59
+ echo "::warning title=Invalid file permissions automatically fixed::$line"
60
+ done
61
+
62
- name: Upload artifact
63
if: github.ref == 'refs/heads/main'
64
uses: actions/upload-pages-artifact@v3
65
with:
- path: public/
66
+ path: public/
67
68
deploy:
69
if: github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch'
0 commit comments