Skip to content

[ci-skip] API 1.0-RC3.5 #129

[ci-skip] API 1.0-RC3.5

[ci-skip] API 1.0-RC3.5 #129

Workflow file for this run

name: Build Skyllia
on: [ push ]
jobs:
skyllia-testbuild:
runs-on: ubuntu-22.04
if: "!contains(github.event.commits[0].message, '[ci-skip]')"
steps:
- name: Checkout Git Repository
uses: actions/checkout@v2
- name: Setup Java 17
uses: actions/[email protected]
with:
java-version: "17"
cache: "gradle"
distribution: "temurin"
- name: Configure Git User
run: git config --global user.email "[email protected]" && git config --global user.name "Github Actions"
- name: Permission gradlew
run: chmod +x gradlew
- name: Build Skyllia jar
run: ./gradlew shadowJar
- name: Upload Snapshot jar
uses: actions/upload-artifact@v2
with:
name: Skyllia-Build
path: build/libs/*