Skip to content

Commit

Permalink
fix: no credentials in vercel tag deployment (#48)
Browse files Browse the repository at this point in the history
# Type of Change

<!-- Check what's necessary or check all if applicable -->

- [ ] BREAKING CHANGE (change that would cause existing functionality to
not work as expected)
- [ ] Feature (change that implements a new feature)
- [x] Bug Fix (change that fixed a bug)
- [ ] Improvements (change that improves existing features or
performance)
- [ ] Documentation (change in documents)
- [ ] Release (new release)
- [ ] Chore (formatting, refactoring, styling or other operations
commit)

###

# Description

<!-- Please provide at least a short description of this pr. -->
Change secret name to default

###

# Related Tickets

<!-- _If this pull request contains related or close an issue, please
add them here. -->

- Related Issue(s) #
- Closes #

Co-authored-by: MoonbamiOfficial <141120384+MoonbamiOfficial@users.noreply.github.com>
  • Loading branch information
moonbamijam and moonbamijam authored Sep 10, 2024
1 parent ace1c37 commit e8482ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/hotfix_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.MOONBAMIOFFICIAL_VERCEL_TOKEN }}
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.MOONBAMIOFFICIAL_VERCEL_TOKEN }}
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.MOONBAMIOFFICIAL_VERCEL_TOKEN }}
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/release_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.MOONBAMIOFFICIAL_VERCEL_TOKEN }}
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.MOONBAMIOFFICIAL_VERCEL_TOKEN }}
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.MOONBAMIOFFICIAL_VERCEL_TOKEN }}
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}

0 comments on commit e8482ae

Please sign in to comment.