Skip to content

Commit

Permalink
🐛 fix(.env.example): update APP_LINK_TWITTER value to correct Twitter…
Browse files Browse the repository at this point in the history
… account

🚀 chore(firebase-hosting-production.yml): add step to create .env file with updated values
🚀 chore(firebase-hosting-pull-request.yml): add step to create .env file with updated values
🚀 chore(firebase-hosting-staging.yml): add step to create .env file with updated values

The APP_LINK_TWITTER value in the .env.example file was updated to the correct Twitter account. This change ensures that the correct Twitter account is linked in the application. Additionally, in the firebase-hosting-production.yml, firebase-hosting-pull-request.yml, and firebase-hosting-staging.yml files, steps were added to create the .env file with the updated values. This ensures that the correct environment variables are used during the build and deployment process.
  • Loading branch information
jofftiquez committed Aug 16, 2023
1 parent 9aed988 commit 8257bc8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ APP_LINK_CMS_APP=
APP_LINK_SUPPORT_PAGE=https://mycure.help
APP_LINK_FACEBOOK=https://www.facebook.com/mycure.md
APP_LINK_LINKEDIN=https://www.linkedin.com/company/mycure/mycompany
APP_LINK_TWITTER=https://twitter.com/mycureapp
APP_LINK_TWITTER=https://twitter.com/mycuremd
APP_LINK_INSTAGRAM=https://www.instagram.com/mycure.md
APP_LINK_YOUTUBE=https://www.youtube.com/@mycure9489
9 changes: 6 additions & 3 deletions .github/workflows/firebase-hosting-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,19 @@ jobs:
run: npm install firebase-tools@~9.23.3 -g
- name: Install Dependencies
run: yarn
- name: Run Build
env:
- name: Create env file
run: |
cat <<EOF > ./.env
API_BASE_URL: https://api.mycure.md
APP_LINK_CMS_APP: https://cms.mycure.md
APP_LINK_SUPPORT_PAGE: https://mycure.help
APP_LINK_FACEBOOK: https://www.facebook.com/mycure.md
APP_LINK_LINKEDIN: https://www.linkedin.com/company/mycure/mycompany
APP_LINK_TWITTER: https://twitter.com/mycureapp
APP_LINK_TWITTER: https://twitter.com/mycuremd
APP_LINK_INSTAGRAM: https://www.instagram.com/mycure.md
APP_LINK_YOUTUBE: https://www.youtube.com/@mycure9489
EOF
- name: Run Build
run: yarn build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
run: |
cat <<EOF > ./.env
API_BASE_URL: https://api.staging.mycure.md
APP_LINK_CMS_APP: https://twitter.com/mycuremd
APP_LINK_CMS_APP: https://staging-web-cms.web.app
APP_LINK_SUPPORT_PAGE: https://mycure.help
APP_LINK_FACEBOOK: https://www.facebook.com/mycure.md
APP_LINK_LINKEDIN: https://www.linkedin.com/company/mycure/mycompany
APP_LINK_TWITTER: https://twitter.com/mycureapp
APP_LINK_TWITTER: https://twitter.com/mycuremd
APP_LINK_INSTAGRAM: https://www.instagram.com/mycure.md
APP_LINK_YOUTUBE: https://www.youtube.com/@mycure9489
EOF
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/firebase-hosting-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
run: |
cat <<EOF > ./.env
API_BASE_URL: https://api.staging.mycure.md
APP_LINK_CMS_APP: https://twitter.com/mycuremd
APP_LINK_CMS_APP: https://staging-web-cms.web.app
APP_LINK_SUPPORT_PAGE: https://mycure.help
APP_LINK_FACEBOOK: https://www.facebook.com/mycure.md
APP_LINK_LINKEDIN: https://www.linkedin.com/company/mycure/mycompany
APP_LINK_TWITTER: https://twitter.com/mycureapp
APP_LINK_TWITTER: https://twitter.com/mycuremd
APP_LINK_INSTAGRAM: https://www.instagram.com/mycure.md
APP_LINK_YOUTUBE: https://www.youtube.com/@mycure9489
EOF
Expand Down

0 comments on commit 8257bc8

Please sign in to comment.