diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..e682ec7 --- /dev/null +++ b/.github/workflows/release.yml @@ -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