Skip to content

Commit

Permalink
chore: updates build script
Browse files Browse the repository at this point in the history
  • Loading branch information
rustygreen committed Feb 9, 2024
1 parent cfcb734 commit ffd9654
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ jobs:
- name: Build All Projects
run: npm run build:ci

- name: Fix permissions
run: |
chmod -c -R +rX "dist/apps/demo/browser/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Archive build
if: success() && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
Expand All @@ -52,11 +58,6 @@ jobs:
steps:
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Fix permissions
run: |
chmod -c -R +rX "_site/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit ffd9654

Please sign in to comment.