@@ -122,33 +122,6 @@ jobs:
122122 name : remote-flows-url
123123 path : remote-flows-url.txt
124124
125- deploy-example-app :
126- name : Deploy Example App Preview
127- runs-on : ubuntu-latest
128- steps :
129- - uses : actions/checkout@v6
130-
131- - name : Deploy remote-flows-example-app to vercel
132- id : vercel-example-app
133- uses : amondnet/vercel-action@v25
134- with :
135- vercel-token : ${{ secrets.VERCEL_TOKEN }}
136- vercel-org-id : ${{ secrets.VERCEL_ORG_ID }}
137- vercel-project-id : ${{ secrets.VERCEL_EXAMPLE_APP_PROJECT_ID }}
138- scope : ${{ secrets.VERCEL_ORG_ID }}
139- github-token : ${{ secrets.GITHUB_TOKEN }}
140- github-comment : true
141-
142- - name : Save deployment URL
143- run : |
144- echo "${{ steps.vercel-example-app.outputs.preview-url }}" > example-app-url.txt
145-
146- - name : Upload deployment URL
147- uses : actions/upload-artifact@v7
148- with :
149- name : example-app-url
150- path : example-app-url.txt
151-
152125 e2e-tests :
153126 name : E2E Tests
154127 runs-on : ubuntu-latest
@@ -222,29 +195,3 @@ jobs:
222195 vercel-args : ' --prod'
223196 github-token : ${{ secrets.GITHUB_TOKEN }}
224197 github-comment : true
225-
226- deploy-example-app-production :
227- name : Deploy Example App to Production
228- needs :
229- [
230- lint-and-format,
231- build-and-exports,
232- tests,
233- example-checks,
234- deploy-example-app,
235- e2e-tests,
236- ]
237- runs-on : ubuntu-latest
238- steps :
239- - uses : actions/checkout@v6
240-
241- - name : Promote example app to production
242- uses : amondnet/vercel-action@v25
243- with :
244- vercel-token : ${{ secrets.VERCEL_TOKEN }}
245- vercel-org-id : ${{ secrets.VERCEL_ORG_ID }}
246- vercel-project-id : ${{ secrets.VERCEL_EXAMPLE_APP_PROJECT_ID }}
247- scope : ${{ secrets.VERCEL_ORG_ID }}
248- vercel-args : ' --prod'
249- github-token : ${{ secrets.GITHUB_TOKEN }}
250- github-comment : true
0 commit comments