Skip to content

Commit

Permalink
Fix them permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
brookslybrand committed Mar 12, 2024
1 parent fe061d4 commit 5b2d1ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
run: |
npm ci
npm run build
# - name: Fix permissions
# run: |
# chmod -c -R +rX "build/" | while read line; do
# echo "::warning title=Invalid file permissions automatically fixed::$line"
# done
- name: Fix permissions
run: |
chmod -c -R +rX "build/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
Expand Down
2 changes: 1 addition & 1 deletion app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ export default function App() {
}

export function HydrateFallback() {
return <p>Did this change?...</p>;
return <p>Loading...</p>;
}

0 comments on commit 5b2d1ef

Please sign in to comment.