summaryrefslogtreecommitdiff
path: root/.github/workflows/ant-build-selfhosted.yaml
blob: 27d1e8dae0a4d654f6304f5ac0df740d10dec3ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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