Skip to content

Workflow file for this run

name: Build Project
on:
push:
branches-ignore:
- 'dependabot/**'
workflow_dispatch:
jobs:
CodeAudits:
uses: evanchooly/workflows/.github/workflows/code-audits.yml@master
Build:
uses: evanchooly/workflows/.github/workflows/build.yml@master
needs: CodeAudits
with:
saveBuild: true
Test:
needs:
- Build
strategy:
matrix:
gradle: [ 7.6 ] #, 7.3, 6.9.1 ]
uses: evanchooly/workflows/.github/workflows/build.yml@master
with:
reuseBuild: true
maven-flags: "-Dgradle.version=${{ matrix.gradle }}"
Snapshots:
if: github.ref_type == 'branch'
needs:
- Test
uses: evanchooly/workflows/.github/workflows/release.yml@master

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

View workflow run for this annotation

GitHub Actions / Build Project

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 34, Col: 11): Secret JRELEASER_GITHUB_TOKEN is required, but not provided while calling. .github/workflows/build.yml (Line: 34, Col: 11): Secret JRELEASER_GPG_PASSPHRASE is required, but not provided while calling.
secrets:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GH_TOKEN: ${{ secrets.GH_OAUTH }}