mirror of
https://github.com/Shabinder/SpotiFlyer.git
synced 2024-11-22 09:04:32 +01:00
Web App WorkFlows
This commit is contained in:
parent
d4d3835f8d
commit
4471e38d3b
32
.github/workflows/build-and-publish-kjs.yml
vendored
Normal file
32
.github/workflows/build-and-publish-kjs.yml
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
name: Build and Publish
|
||||||
|
on: [ push, pull_request ]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Test and Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
# Setup Java 1.8 environment for the next steps
|
||||||
|
- name: Setup Java
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: 1.8
|
||||||
|
|
||||||
|
# Check out current repository
|
||||||
|
- name: Fetch Sources
|
||||||
|
uses: actions/checkout@v2.3.1
|
||||||
|
|
||||||
|
# Build application
|
||||||
|
- name: Test and Build
|
||||||
|
run: ./gradlew :web-app:build
|
||||||
|
|
||||||
|
# If main branch update, deploy to gh-pages
|
||||||
|
- name: Deploy
|
||||||
|
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/KMP'
|
||||||
|
uses: JamesIves/github-pages-deploy-action@4.1.0
|
||||||
|
with:
|
||||||
|
repository-name: Shabinder/SpotiFlyer
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
BRANCH: gh-pages # The branch the action should deploy to.
|
||||||
|
FOLDER: build/distributions # The folder the action should deploy.
|
||||||
|
CLEAN: true # Automatically remove deleted files from the deploy branch
|
@ -1,4 +1,4 @@
|
|||||||
package com.willowtreeapps.fuzzywuzzy
|
package kotlin.com.willowtree.fuzzywuzzy
|
||||||
|
|
||||||
import com.willowtreeapps.fuzzywuzzy.diffutils.Extractor
|
import com.willowtreeapps.fuzzywuzzy.diffutils.Extractor
|
||||||
import com.willowtreeapps.fuzzywuzzy.diffutils.algorithms.WeightedRatio
|
import com.willowtreeapps.fuzzywuzzy.diffutils.algorithms.WeightedRatio
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package com.willowtreeapps.fuzzywuzzy
|
package kotlin.com.willowtree.fuzzywuzzy
|
||||||
|
|
||||||
|
|
||||||
import com.willowtreeapps.fuzzywuzzy.diffutils.FuzzySearch
|
import com.willowtreeapps.fuzzywuzzy.diffutils.FuzzySearch
|
||||||
|
Loading…
Reference in New Issue
Block a user