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.
2 parents 86684e7 + 47419f1 commit cd38955Copy full SHA for cd38955
.github/workflows/scala-steward.yaml
@@ -18,7 +18,8 @@ jobs:
18
# to get a token for publishing even when not executing the publish task. Most of the time, SHELL is set
19
# but apparently not inside GitHub Actions runners. Setting _something invalid_ satisfies the
20
# GitHub Packages plugin safely and allows the operation to proceed.
21
- run: git config github.token unused
+ # We also have to initialize the git repo because we're not in a repo context when this runs.
22
+ run: git init . && git config github.token unused
23
- name: Install JDK for Scala Steward use
24
uses: actions/setup-java@v3
25
with:
0 commit comments