-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #169 from nyomansunima/161-add-the-seo-meta-tags-i…
…ncluding-image-preview 161 add the seo meta tags including image preview
- Loading branch information
Showing
13 changed files
with
5,802 additions
and
8,537 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
This file was deleted.
Oops, something went wrong.
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,52 @@ | ||
# Deploy the web application | ||
# into the vercel as production | ||
# | ||
# ***** NOTE ****** | ||
# This deployment need to setup some secrets | ||
|
||
name: Deploy Studio Application to Production | ||
|
||
# define the env for this workflows | ||
env: | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_STUDIO_ORG_ID }} | ||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_STUDIO_PROJECT_ID }} | ||
|
||
# Oonly run this workflows if | ||
# the user start manual the actions | ||
# and push the code into the main branch | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "apps/studio/**" | ||
|
||
jobs: | ||
update: | ||
name: Update Web App | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Nodejs Environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install Vercel CLI | ||
working-directory: ./apps/studio | ||
run: npm install --global vercel@latest | ||
|
||
- name: Pull Vercel Environment Information | ||
working-directory: ./apps/studio | ||
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | ||
|
||
- name: Build Project Artifacts | ||
working-directory: ./apps/studio | ||
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | ||
|
||
- name: Deploy Project Artifacts to Vercel | ||
working-directory: ./apps/studio | ||
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} |
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,52 @@ | ||
# Deploy the web application | ||
# into the vercel as production | ||
# | ||
# ***** NOTE ****** | ||
# This deployment need to setup some secrets | ||
|
||
name: Deploy Web Application to Production | ||
|
||
# define the env for this workflows | ||
env: | ||
VERCEL_ORG_ID: ${{ secrets.VERCEL_WEB_ORG_ID }} | ||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_WEB_PROJECT_ID }} | ||
|
||
# Oonly run this workflows if | ||
# the user start manual the actions | ||
# and push the code into the main branch | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "apps/web/**" | ||
|
||
jobs: | ||
update: | ||
name: Update Web App | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Nodejs Environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install Vercel CLI | ||
working-directory: ./apps/web | ||
run: npm install --global vercel@latest | ||
|
||
- name: Pull Vercel Environment Information | ||
working-directory: ./apps/web | ||
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | ||
|
||
- name: Build Project Artifacts | ||
working-directory: ./apps/web | ||
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | ||
|
||
- name: Deploy Project Artifacts to Vercel | ||
working-directory: ./apps/web | ||
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} |
Oops, something went wrong.