Skip to content

Commit d4f9b80

Browse files
committed
test
1 parent f0deacb commit d4f9b80

File tree

1 file changed

+33
-32
lines changed

1 file changed

+33
-32
lines changed

.github/workflows/deploy_latest_release.yml

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -82,41 +82,42 @@ jobs:
8282
- name: Continue deployment?
8383
if: ${{ needs.check-latest-release.outputs.IS_LATEST_RELEASE }} == 'true'
8484
run: |-
85+
echo "Input: ${{ needs.check-latest-release.outputs.IS_LATEST_RELEASE }}"
8586
echo "Deploy is not for the latest release. Stopping deployment"
8687
exit 0
8788
8889
- name: Checkout
8990
uses: actions/checkout@v4
9091

91-
- name: Setup node
92-
id: setup_node
93-
uses: actions/setup-node@v4
94-
with:
95-
node-version: 22
96-
cache: "npm"
97-
98-
- name: Install Monorepo Dependencies
99-
run: |-
100-
# Install node dependencies
101-
node ./scripts/gtime.js monorepo_install npm ci
102-
103-
- name: Generate Retail App Demo
104-
uses: ./.github/actions/e2e_generate_app
105-
with:
106-
PROJECT_KEY: "retail-react-app-demo-site"
107-
108-
- name: Create MRT credentials file
109-
uses: "./.github/actions/create_mrt"
110-
with:
111-
mobify_user: ${{ secrets.MOBIFY_CLIENT_USER }}
112-
mobify_api_key: ${{ secrets.MOBIFY_CLIENT_API_KEY }}
113-
114-
#TODO - change target to production once testing is done
115-
- name: Push Bundle to MRT (Demo Site)
116-
uses: "./.github/actions/push_to_mrt"
117-
with:
118-
CWD: "../generated-projects/retail-react-app-demo-site"
119-
TARGET: staging
120-
PROJECT: scaffold-pwa
121-
MESSAGE: "tag ${{ github.event.release.tag_name }}"
122-
FLAGS: --wait
92+
# - name: Setup node
93+
# id: setup_node
94+
# uses: actions/setup-node@v4
95+
# with:
96+
# node-version: 22
97+
# cache: "npm"
98+
99+
# - name: Install Monorepo Dependencies
100+
# run: |-
101+
# # Install node dependencies
102+
# node ./scripts/gtime.js monorepo_install npm ci
103+
104+
# - name: Generate Retail App Demo
105+
# uses: ./.github/actions/e2e_generate_app
106+
# with:
107+
# PROJECT_KEY: "retail-react-app-demo-site"
108+
109+
# - name: Create MRT credentials file
110+
# uses: "./.github/actions/create_mrt"
111+
# with:
112+
# mobify_user: ${{ secrets.MOBIFY_CLIENT_USER }}
113+
# mobify_api_key: ${{ secrets.MOBIFY_CLIENT_API_KEY }}
114+
115+
# #TODO - change target to production once testing is done
116+
# - name: Push Bundle to MRT (Demo Site)
117+
# uses: "./.github/actions/push_to_mrt"
118+
# with:
119+
# CWD: "../generated-projects/retail-react-app-demo-site"
120+
# TARGET: staging
121+
# PROJECT: scaffold-pwa
122+
# MESSAGE: "tag ${{ github.event.release.tag_name }}"
123+
# FLAGS: --wait

0 commit comments

Comments
 (0)