Skip to content

Commit

Permalink
add deploy web action
Browse files Browse the repository at this point in the history
  • Loading branch information
avan1235 committed Jan 30, 2024
1 parent 1fd5b2a commit ea00aab
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,3 +263,36 @@ jobs:
git config --global user.email "${{ secrets.CI_COMMIT_EMAIL }}"
git commit version.properties -m "update version properties"
git push origin HEAD:master
build-web:
name: Build web release
runs-on: ubuntu-latest
needs: release
steps:
- name: Checkout to push branch
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
fetch-depth: 0

- name: Set up JDK 19
uses: actions/setup-java@v1
with:
java-version: 19

- name: Build Wasm Distribution
if: job.status == 'success'
run: |
export GRADLE_USER_HOME=$(pwd)/.gradle
export WEB_CLIENT_API_HOST=${{ secrets.API_HOST }}
export REST_CLIENT_API_SCHEME=https
export WEBSOCKET_CLIENT_API_SCHEME=wss
chmod +x ./gradlew
./gradlew web-app:wasmJsBrowserDistribution
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./web-app/build/dist/wasmJs/productionExecutable
force_orphan: true

0 comments on commit ea00aab

Please sign in to comment.