-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
20.7.1 SHQ23-1281 Fix security linter warnings
- Loading branch information
Showing
7 changed files
with
114 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
include: | ||
- project: ShipperHQ/DevOps/GitLabTemplates | ||
ref: INFRA-672 | ||
file: /magento/release.gitlab-ci.yml | ||
|
||
stages: | ||
- tag | ||
- release to GitLab | ||
- release to GitHub | ||
|
||
# Denote whether to build major, minor or patch release | ||
major release: | ||
stage: tag | ||
variables: | ||
VERSION_INCREMENT: "major" | ||
extends: | ||
- .m2_module_release | ||
|
||
minor release: | ||
stage: tag | ||
variables: | ||
VERSION_INCREMENT: "minor" | ||
extends: | ||
- .m2_module_release | ||
|
||
patch release: | ||
stage: tag | ||
variables: | ||
VERSION_INCREMENT: "patch" | ||
extends: | ||
- .m2_module_release | ||
|
||
# Build public release | ||
build release to GitHub: | ||
stage: release to GitHub | ||
variables: | ||
GITHUB_REPO: "git@github.com:shipperhq/module-logger.git" | ||
when: on_success | ||
needs: | ||
- job: major release | ||
optional: true | ||
- job: minor release | ||
optional: true | ||
- job: patch release | ||
optional: true | ||
extends: | ||
- .m2_public_release | ||
|
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
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
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