Skip to content

Commit ce768a4

Browse files
committed
Remove dev from oci as build fails oci
1 parent 9274e9a commit ce768a4

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

.github/semantic-release/publish-oci.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const version = process.env.VERSION.replace(/^v/, "");
1111
const repo = process.env.GITHUB_REPOSITORY.toLowerCase();
1212
const imagePath = `ghcr.io/${repo}`;
1313

14-
const ociTypes = ["", "-full", "-dev", "-dev-full", "-v3", "-v3-full"];
14+
const ociTypes = ["", "-full", "-v3", "-v3-full"];
1515

1616
ociTypes.forEach((ociType) => {
1717
const dockerEnv = {
@@ -21,7 +21,6 @@ ociTypes.forEach((ociType) => {
2121
LDAP_ENABLED: ociType.includes("-full") ? "true" : "",
2222
OIDC_ENABLED: ociType.includes("-full") ? "true" : "",
2323
COMPOSE_PROFILES: ociType.includes("-full") ? "*" : "",
24-
DEV: ociType.includes("-dev") ? "true" : "",
2524
BE_VERSION: ociType.includes("-v3") ? "v3" : "v4",
2625
};
2726

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ For every new release, these tags are added to the registry:
2020

2121
- `latest(|version)`: the latest release with default configuration;
2222
- `latest(|version)-full`: the latest release with all features enabled;
23-
- `latest(|version)-dev`: the latest release with containers prepared for development.
24-
- `latest(|version)-dev-full`: the latest release with all features enabled and containers prepared for development.
2523
- `latest(|version)-v3`: the latest release with the v3 backend and minimal configuration.
2624
- `latest(|version)-v3-full`: the latest release with the v3 backend and all features enabled.
2725

0 commit comments

Comments
 (0)