forked from iteratec/semantic-release-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(wip): work in progress towards new features
- Loading branch information
1 parent
a633299
commit b081ec8
Showing
19 changed files
with
399 additions
and
178 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { DockerPluginConfig } from './dockerPluginConfig'; | ||
|
||
export interface PluginSettings { | ||
path: '@iteratec/semantic-release-docker'; | ||
defaultValues: DockerPluginConfig; | ||
} |
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,9 @@ | ||
import { Credentials } from './credentials'; | ||
|
||
/** | ||
* Authentication | ||
* From: https://docs.docker.com/engine/api/v1.37/#section/Authentication | ||
*/ | ||
export interface Authentication extends Credentials { | ||
serveraddress: string; | ||
} |
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,4 @@ | ||
export interface Credentials { | ||
username: string; | ||
password: string; | ||
} |
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,8 @@ | ||
import { SemanticReleasePlugin } from "semantic-release"; | ||
export interface DockerPluginConfig extends SemanticReleasePlugin { | ||
additionalTags?: string[]; | ||
imageName: string; | ||
registryUrl?: string; | ||
repositoryName?: string; | ||
pushVersionTag?: boolean; | ||
} |
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,3 @@ | ||
export { Authentication } from './authentication'; | ||
export { DockerPluginConfig } from './dockerPluginConfig'; | ||
export { Credentials } from './credentials'; |
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,13 @@ | ||
import { PluginSettings } from "./models/PluginSettings"; | ||
|
||
export const pluginSettings: PluginSettings = { | ||
path: "@iteratec/semantic-release-docker", | ||
defaultValues: { | ||
additionalTags: [], | ||
imageName: "", | ||
path: "@iteratec/semantic-release-docker", | ||
pushVersionTag: true, | ||
registryUrl: "", | ||
repositoryName: "" | ||
} | ||
}; |
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
Oops, something went wrong.