We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7825792 commit 7f046e8Copy full SHA for 7f046e8
1 file changed
.github/workflows/nightly.yml
@@ -46,12 +46,20 @@ jobs:
46
run: ./go publish-maven-snapshot
47
48
grid:
49
+ runs-on: ubuntu-latest
50
if: inputs.language == 'java'
- 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
+ steps:
+ - name: Java Build
+ uses: ./.github/workflows/bazel.yml
+ with:
+ name: Build Release
+ cache-key: java-nightly
+ run: ./go publish-maven-snapshot
58
+ - name: Release Nightly Grid
59
+ uses: marvinpinto/action-automatic-releases@latest
60
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