Skip to content

Commit

Permalink
Merge pull request #169 from nyomansunima/161-add-the-seo-meta-tags-i…
Browse files Browse the repository at this point in the history
…ncluding-image-preview

161 add the seo meta tags including image preview
  • Loading branch information
nyomansunima authored Aug 31, 2023
2 parents 79e1ef1 + cf95051 commit 934b370
Show file tree
Hide file tree
Showing 13 changed files with 5,802 additions and 8,537 deletions.
57 changes: 32 additions & 25 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,26 @@
<!-- Pull request template -->
## What type of PR is this? (check all applicable)

# Description
- [ ] 🚜Refactor
- [ ] ✅ Feature
- [ ] 🐛 Bug Fix
- [ ] 🚀 Optimization
- [ ] 📝 Documentation Update

Please include a summary of the changes and the related issue. Please also include relevant motivation and context. List any dependencies that are required for this change.
## Description

Fixes # (issue)
## Related Tickets & Documents

## Type of change
- Related Issue #
- Closes #
- Fixed #

Please delete options that are not relevant.
## QA Instructions, Screenshots, Recordings

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update
_Please replace this line with instructions on how to test your changes, a note
on the devices and browsers this has been tested on, as well as any relevant
images for UI changes._

# How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration

- [ ] Test A
- [ ] Test B

**Test Configuration**:

- Firmware version:
- Hardware:
- Toolchain:
- SDK:

# Checklist:
### Chechlist

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
Expand All @@ -39,3 +30,19 @@ Please describe the tests that you ran to verify your changes. Provide instructi
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream modules

## Added/updated tests?

- [ ] 👍 Yes
- [ ] 🙅‍♀️ No, and this is why: _please replace this line with details on why tests
have not been included_
- [ ] ☝️ I need help with writing tests

## Documentation Update Needs ?

- [ ] 📝 Readme
- [ ] 🚀 Changelog
- [ ] 🥰 Contributing
- [ ] 🙅‍♀️ No, Docs Already Update

## Are there any post deployment tasks we need to perform?
58 changes: 0 additions & 58 deletions .github/workflows/linter.yml

This file was deleted.

52 changes: 52 additions & 0 deletions .github/workflows/studio-production.yml
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 }}
52 changes: 52 additions & 0 deletions .github/workflows/web-production.yml
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 }}
Loading

0 comments on commit 934b370

Please sign in to comment.