Skip to content

Add new project and links in portfolio. #12

Add new project and links in portfolio.

Add new project and links in portfolio. #12

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set execute permissions for gradlew
run: chmod +x ./gradlew
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 19
- name: Build
run: ./gradlew jsBrowserDistribution
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4 #https://github.com/marketplace/actions/deploy-to-github-pages
with:
folder: build/dist/js/productionExecutable