Skip to content

Commit

Permalink
add web release
Browse files Browse the repository at this point in the history
  • Loading branch information
avan1235 committed Feb 5, 2024
1 parent 2ee42da commit 6b5aece
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Release

on:
push:
tags:
- "v*.*.*"

jobs:
release:
name: Create release
runs-on: ubuntu-latest
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- name: Extract version name
id: extract_name
run: echo "name=$(echo ${GITHUB_REF##*/})" >>$GITHUB_OUTPUT
shell: bash

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
chmod +x ./gradlew
./gradlew composeApp:wasmJsBrowserDistribution
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./composeApp/build/dist/wasmJs/productionExecutable
force_orphan: true

0 comments on commit 6b5aece

Please sign in to comment.