You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
394 B
19 lines
394 B
name: CI Script to build on self-hosted server
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: self-hosted
|
|
if: github.repository == 'yacy/yacy_search_server'
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'temurin'
|
|
- name: Build linux release
|
|
run: ant clean all dist
|
|
|