Skip to content
Snippets Groups Projects
Commit f2f9f29e authored by Arno Rossouw's avatar Arno Rossouw
Browse files

8-INFRASTRUCTURE :: gitlab ci for production branch

parent 4f9056b0
No related branches found
No related tags found
1 merge request!188-INFRASTRUCTURE :: gitlab ci for production branch
This commit is part of merge request !18. Comments created here will be created in the context of that merge request.
...@@ -21,3 +21,30 @@ deploy: ...@@ -21,3 +21,30 @@ deploy:
rules: rules:
- if: '$CI_COMMIT_BRANCH == "dev" && $CI_COMMIT_TAG == null' - if: '$CI_COMMIT_BRANCH == "dev" && $CI_COMMIT_TAG == null'
when: always when: always
prod_deploy:
stage: deploy
before_script:
- AWS_ACCESS_KEY_ID_KEY=$(echo "$CI_COMMIT_BRANCH"_"AWS_ACCESS_KEY_ID")
- AWS_ACCESS_KEY_ID=$(eval echo -e "\$$AWS_ACCESS_KEY_ID_KEY")
- AWS_SECRET_ACCESS_KEY_KEY=$(echo "$CI_COMMIT_BRANCH"_"AWS_SECRET_ACCESS_KEY")
- AWS_SECRET_ACCESS_KEY=$(eval echo -e "\$$AWS_SECRET_ACCESS_KEY_KEY")
- export AWS_ACCESS_KEY_ID
- export AWS_SECRET_ACCESS_KEY
# Fetch the prod branch
- git fetch origin prod
# Check if the tagged commit is from the prod branch
- if git merge-base --is-ancestor "${CI_COMMIT_SHA}" origin/prod; then
echo "Tag ${CI_COMMIT_TAG} is from prod branch.";
else
echo "Tag ${CI_COMMIT_TAG} is not from prod branch.";
exit 1;
fi
script:
- ./make-zip.sh
- aws s3 cp bobgo-magento-plugin.zip s3://bobgo-s3-magento-plugin-prod/ --region=af-south-1
allow_failure: false
rules:
- if: '$CI_COMMIT_TAG'
when: on_success
- when: never
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"name": "bobgo/bobgo-magento-extension", "name": "bobgo/bobgo-magento-extension",
"description": "Smart shipping and order management solution in South Africa", "description": "Smart shipping and order management solution in South Africa",
"type": "magento2-module", "type": "magento2-module",
"version": "1.0.36", "version": "1.0.37",
"authors": [ "authors": [
{ {
"name": "Bob Go", "name": "Bob Go",
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
*/ */
--> -->
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="BobGroup_BobGo" setup_version="1.0.36"> <module name="BobGroup_BobGo" setup_version="1.0.37">
<sequence> <sequence>
<module name="Magento_Webapi"/> <module name="Magento_Webapi"/>
<module name="Magento_Catalog"/> <module name="Magento_Catalog"/>
......
{ {
"name": "bobgo-magento-plugin", "name": "bobgo-magento-plugin",
"description": "Bob Go magento plugin", "description": "Bob Go magento plugin",
"version": "1.0.36", "version": "1.0.37",
"license": "GPL-2.0-or-later", "license": "GPL-2.0-or-later",
"scripts": { "scripts": {
"prepare": "husky install", "prepare": "husky install",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment