Many changes including tag store, full JS support in custom tags, revamp of UI in custom tag editor and various bug fixes. #39
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven | |
on: | |
push: | |
branches: [ master ] | |
tags: | |
- 'v*' | |
pull_request: | |
branches: [ master ] | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'oracle' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Creating the jar file | |
run: ./gradlew jar | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./releases/*.jar | |
name: Downloadable Extension File | |
- name: Release | |
uses: hackvertor/[email protected] | |
with: | |
tag: "latest_hackvertor_release" | |
allowUpdates: true | |
artifacts: "releases/*.jar" |