Skip to content

Commit 2a22ea6

Browse files
Merge pull request #1 from raw-labs/fix-creds
Add missing credentials for CI
2 parents 6872a58 + 482d482 commit 2a22ea6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,6 @@ env:
1717
GITHUB_TOKEN: ${{ secrets.READ_PACKAGES }}
1818

1919
jobs:
20-
code-check:
21-
runs-on: self-hosted
22-
container:
23-
image: sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.2_13_1.9.9_2.12.19
24-
steps:
25-
- uses: actions/checkout@v4
26-
- run: sbt headerCheckAll
2720
test:
2821
runs-on: self-hosted
2922
container:

build.sbt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
sbtPlugin := true
22

3+
ThisBuild / credentials += Credentials(
4+
"GitHub Package Registry",
5+
"maven.pkg.github.com",
6+
"raw-labs",
7+
sys.env.getOrElse("GITHUB_TOKEN", "")
8+
)
9+
310
moduleName := "sbt-module-patcher"
411

512
homepage := Some(url("https://www.raw-labs.com/"))

0 commit comments

Comments
 (0)