Skip to content

ci: combine build-pr/master to build #2

ci: combine build-pr/master to build

ci: combine build-pr/master to build #2

Workflow file for this run

name: build
on:
push:
branches:
- master
- development
tags:
- "*-[0-9]+.*"
pull_request:
branches:
- master
- development
jobs:

Check failure on line 15 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install blosc
run: |
sudo apt-get update
sudo apt-get install -y libblosc1
- name: Set up Java
uses: actions/setup-java@v5
with:
java-version: '8'
distribution: 'zulu'
cache: 'maven'
- name: Set up CI environment
run: .github/setup.sh
shell: bash
- name: Execute the build
run: .github/build.sh
shell: bash
env:
GPG_KEY_NAME: ${{ secrets.GPG_KEY_NAME }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
MAVEN_USER: ${{ secrets.MAVEN_USER }}
MAVEN_PASS: ${{ secrets.MAVEN_PASS }}
OSSRH_PASS: ${{ secrets.OSSRH_PASS }}
SIGNING_ASC: ${{ secrets.SIGNING_ASC }}