-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from GerardPaligot/feat/m3
Create artifact dedicated for m3 Design System
- Loading branch information
Showing
61 changed files
with
1,143 additions
and
739 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package io.openfeedback | ||
|
||
object EnvVarKeys { | ||
object Nexus { | ||
const val username = "SONATYPE_NEXUS_USERNAME" | ||
const val password = "SONATYPE_NEXUS_PASSWORD" | ||
const val profileId = "IO_OPENFEEDBACK_PROFILE_ID" | ||
} | ||
|
||
object GPG { | ||
const val privateKey = "OPENFEEDBACK_GPG_PRIVATE_KEY" | ||
const val password = "OPENFEEDBACK_GPG_PRIVATE_KEY_PASSWORD" | ||
} | ||
|
||
object GitHub { | ||
const val event = "GITHUB_EVENT_NAME" | ||
const val ref = "GITHUB_REF" | ||
} | ||
} |
Oops, something went wrong.