Skip to content

refactor. fix methods that used to be defualt. fix frames & trycatchb… #31

refactor. fix methods that used to be defualt. fix frames & trycatchb…

refactor. fix methods that used to be defualt. fix frames & trycatchb… #31

Workflow file for this run

name: Build Snapshot
on:
push:
branches-ignore:
- 'feature/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Publish
run: ./gradlew publish -Pversion_snapshot -Pmvn.user=${{ secrets.MAVEN_USER }} -Pmvn.key=${{ secrets.MAVEN_TOKEN }}
- uses: actions/upload-artifact@v2
with:
name: base
path: build/libs
- uses: actions/upload-artifact@v2
with:
name: api
path: java-api/build/libs
- uses: actions/upload-artifact@v2
with:
name: gradle
path: gradle-plugin/build/libs