Skip to content

Merge pull request #157 from finos/gh-156 #203

Merge pull request #157 from finos/gh-156

Merge pull request #157 from finos/gh-156 #203

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: KDB Studio build (Java 11)
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build-kdb-studio:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Project checkout
uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build
uses: eskatos/gradle-command-action@v1
with:
arguments: install
- name: Test
run: ./test.sh
- name: Show workspace
run: find
- name: Make release archive
run: cd build/install; zip -r studio_java11 *
- name: Upload release
if: github.event_name == 'push'
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest-java11"
prerelease: true
title: "Latest Build (Java 11)"
files: |
build/install/studio_java11.zip