Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SKProCH committed Feb 24, 2024
1 parent bc182e3 commit f8a2340
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ jobs:
- name: 'Install workload: wasm-tools'
run: dotnet workload install wasm-tools
- name: 'Publish Material.Avalonia.Demo.Browser'
run: dotnet publish Material.Avalonia.Demo.Browser/Material.Avalonia.Demo.Browser.csproj -c Release --output _site
run: dotnet publish Material.Avalonia.Demo.Browser/Material.Avalonia.Demo.Browser.csproj -c Release
- name: Fix permissions
run: |
chmod -c -R +rX "_site/" | while read line; do
chmod -c -R +rX "Material.Avalonia.Demo.Browser/bin/Release/net8.0/browser-wasm/AppBundle/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: '_site/'
path: 'Material.Avalonia.Demo.Browser/bin/Release/net8.0/browser-wasm/AppBundle/'

# Deploy job
deploy:
Expand Down

0 comments on commit f8a2340

Please sign in to comment.