Skip to content

Adjust artifacts path #55

Adjust artifacts path

Adjust artifacts path #55

Workflow file for this run

name: Publish to DBIS Nexus
on:
push:
branches:
- master
jobs:
publish:
if: ${{ github.repository_owner == 'polypheny' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Build with Gradle
run: ./gradlew --no-daemon build packageDistribution
- name: Publish Zip to artifacts.polypheny.com
uses: SamKirkland/[email protected]
with:
server: artifacts.polypheny.com
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
local-dir: publish/
server-dir: /ui/
protocol: ftp
port: 21