Skip to content

Commit 7f046e8

Browse files
authored
Uploading Nightly Grid jar to release
1 parent 7825792 commit 7f046e8

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

.github/workflows/nightly.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,20 @@ jobs:
4646
run: ./go publish-maven-snapshot
4747

4848
grid:
49+
runs-on: ubuntu-latest
4950
if: inputs.language == 'java'
50-
name: Grid
51-
uses: ./.github/workflows/bazel.yml
52-
with:
53-
name: Release
54-
cache-key: grid-nightly
55-
run: |
56-
echo build --stamp >>.bazelrc.local
57-
./go prep-release-zip
51+
steps:
52+
- name: Java Build
53+
uses: ./.github/workflows/bazel.yml
54+
with:
55+
name: Build Release
56+
cache-key: java-nightly
57+
run: ./go publish-maven-snapshot
58+
- name: Release Nightly Grid
59+
uses: marvinpinto/action-automatic-releases@latest
60+
with:
61+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
62+
automatic_release_tag: "nightly"
63+
title: "Nightly"
64+
prerelease: true
65+
files: build/dist/*.jar

0 commit comments

Comments
 (0)