Skip to content

Commit

Permalink
chore: Fix docker images tag (#16626)
Browse files Browse the repository at this point in the history
no slashes are allowed in quay.io image tags

Co-authored-by: Thomas Belin <[email protected]>
  • Loading branch information
otto-the-bot and atomrc authored Jan 25, 2024
1 parent 1300f06 commit 475d977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/push_docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ require('dotenv').config();
*/

/** Version tag of webapp (e.g. "2023-11-09-staging.0", "dev") */
const versionTag = process.argv[2];
const versionTag = process.argv[2].replace('/', '-');
const uniqueTagOut = process.argv[3] || '';
/** Commit ID of https://github.com/wireapp/wire-webapp (i.e. "1240cfda9e609470cf1154e18f5bc582ca8907ff") */
const commitSha = process.env.GITHUB_SHA || process.argv[4];
Expand Down

0 comments on commit 475d977

Please sign in to comment.