Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Aug 23, 2024
1 parent 34b15ec commit 5edb31b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ jobs:
uses: actions/checkout@v3

- name: Run Gradle Tasks
run: ./gradlew wasmJsBrowserDistribution
run: ./gradlew :composeApp:wasmJsBrowserDistribution

- name: Fix permissions
run: |
chmod -v -R +rX "build/dist/wasmJs/productionExecutable/" | while read line; do
chmod -v -R +rX "composeApp/build/dist/wasmJs/productionExecutable/" | 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: build/dist/wasmJs/productionExecutable/
path: composeApp/build/dist/wasmJs/productionExecutable/

deploy:
# Add a dependency to the build job
Expand Down

0 comments on commit 5edb31b

Please sign in to comment.