Merge pull request #585 from okybaca/stopYacyDots #85
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
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 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
- name: Build linux release | |
run: ant clean all dist | |