Skip to content

Commit

Permalink
Attempt to move bazel-steward.jar away from repository
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszwawrzyk committed Mar 4, 2025
1 parent 079ca9a commit 9e48230
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Bazel steward"
name: "Bazel Steward"
description: "Automatically searches bazel repositories for dependencies and updates them"
author: ""
inputs:
Expand Down Expand Up @@ -48,12 +48,14 @@ runs:
- name: Build jar file
if: ${{ inputs.use-release != 'true' }}
uses: ./.github
- name: Move obtained bazel-steward.jar
run: mv bazel-steward.jar /tmp/bazel-steward.jar
- name: Setup git user
uses: fregante/setup-git-user@v1
- name: Run bazel steward
run: |
NO_REMOTE=$([[ $PUSH_TO_REMOTE == 'true' ]] && echo "" || echo "--no-remote")
java -Dorg.slf4j.simpleLogger.defaultLogLevel=INFO -jar bazel-steward.jar \
java -Dorg.slf4j.simpleLogger.defaultLogLevel=INFO -jar /tmp/bazel-steward.jar \
--github $NO_REMOTE --config-path '${{ inputs.configuration-path }}' ${{ inputs.additional-args }}
shell: bash
env:
Expand Down

0 comments on commit 9e48230

Please sign in to comment.