Skip to content

ci: add publish repo and build pipeline #1

ci: add publish repo and build pipeline

ci: add publish repo and build pipeline #1

Workflow file for this run

name: "Build and Test"
on:
push:
workflow_dispatch:
pull_request:
env:
REPOSILITE_USERNAME: ${{ secrets.REPOSILITE_USERNAME }}
REPOSILITE_PASSWORD: ${{ secrets.REPOSILITE_PASSWORD }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11'
- name: Build with Gradle
run: ./gradlew build publish