Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ on:
type: string
default: ''
language:
description: Configured artefacts for the language will be built and pushed
description: Language artefacts
required: true
type: choice
default: "ruby"
options:
- java
- ruby
- grid

jobs:
ruby:
Expand Down Expand Up @@ -44,10 +45,12 @@ jobs:
with:
name: Release
cache-key: java-nightly
run: ./go publish-maven-snapshot
run: |
./go publish-maven-snapshot
secrets: inherit

grid:
if: inputs.language == 'java' || github.event_name == 'schedule'
if: inputs.language == 'grid' || github.event_name == 'schedule'
name: Grid
uses: ./.github/workflows/bazel.yml
with:
Expand Down