From 8b30c6cbe6ef59777fcc1fd5695d582e2bcad8f7 Mon Sep 17 00:00:00 2001 From: Artem Kobzar Date: Wed, 7 Feb 2024 19:23:26 +0100 Subject: [PATCH] Add publishing to github pages --- .github/workflows/ci.yml | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..ec0f1f3 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,53 @@ +name: Publish Application on GitHub Pages +on: [push, pull_request] +jobs: + # Build job + build: + name: Build Kotlin/Wasm + runs-on: ubuntu-latest + steps: + - name: Set up JDK + uses: actions/setup-java@v2 + with: + distribution: 'adopt' + java-version: '11' + + - name: Checkout code + uses: actions/checkout@v3 + + - name: Run Gradle Tasks + run: ./gradlew wasmJsBrowserProductionWebpack + + - name: Fix permissions + run: | + chmod -c -R +rX "build/dist/wasmJs/productionExecutable" | while read line; do + echo "::warning title=Invalid file permissions automatically fixed::$line" + done + + - name: Archive production artifacts + uses: actions/upload-artifact@v4 + with: + name: github-pages + path: build/dist/wasmJs/productionExecutable + + # Deploy job + deploy: + # Add a dependency to the build job + needs: build + + # Grant GITHUB_TOKEN the permissions required to make a Pages deployment + permissions: + pages: write # to deploy to Pages + id-token: write # to verify the deployment originates from an appropriate source + + # Deploy to the github-pages environment + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + + # Specify runner + deployment step + runs-on: ubuntu-latest + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 \ No newline at end of file