Skip to content

Commit

Permalink
Change CI token in use
Browse files Browse the repository at this point in the history
  • Loading branch information
miksto committed Feb 21, 2024
1 parent acf50dc commit 7976b7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on:
workflow_dispatch:

env:
APEGROUPCI_USERNAME: ${{ secrets.APEGROUPCI_USERNAME }}
APEGROUPCI_TOKEN: ${{ secrets.APEGROUPCI_TOKEN }}
GH_USERNAME: ${{ secrets.MCD_OPEN_SOURCE_REPOSITORY_CI_TOKEN }}
GH_TOKEN: ${{ secrets.MCD_OPEN_SOURCE_REPOSITORY_CI_USERNAME }}

jobs:
publish:
Expand Down
4 changes: 2 additions & 2 deletions revolver/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ publishing {
setUrl("https://maven.pkg.github.com/apegroup/revolver")
name = "GitHubPackages"
credentials {
username = System.getenv("APEGROUPCI_USERNAME") ?: properties["GH_USERNAME"]?.toString()
password = System.getenv("APEGROUPCI_TOKEN") ?: properties["GH_TOKEN"]?.toString()
username = System.getenv("GH_USERNAME") ?: properties["GH_USERNAME"]?.toString()
password = System.getenv("GH_TOKEN") ?: properties["GH_TOKEN"]?.toString()
}
}
}
Expand Down

0 comments on commit 7976b7d

Please sign in to comment.