Skip to content

Commit

Permalink
fix: remove default credential
Browse files Browse the repository at this point in the history
  • Loading branch information
punchanabu committed Sep 15, 2024
1 parent 2d34b69 commit 463bd65
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,32 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0

- name: Remove default git credentials
run: |
git config --global --unset credential.helper || true
rm -f ~/.git-credentials
- name: Set up Git user
run: |
git config user.name "korawit-alt"
git config user.email "test@gmail.com"
git config --global user.name "Hello"
git config --global user.email "test@example.com"
- name: Mask Personal Access Token
- name: Configure Git to use Personal Access Token
run: |
echo "::add-mask::${{ secrets.PERSONAL_GITHUB_TOKEN }}"
echo "https://x-access-token:${{ secrets.PERSONAL_GITHUB_TOKEN }}@github.com" > ~/.git-credentials
git config --global credential.helper store
- name: Push to Personal Repo
run: |
git remote add personal https://x-access-token:${{ secrets.PERSONAL_GITHUB_TOKEN }}@github.com/korawit-alt/sucu-frontend-preview.git
git push personal HEAD:main --force
git remote add personal https://github.com/korawit-alt/sucu-frontend-preview.git
git push personal HEAD:dev --force
- name: Deploy to Vercel
uses: amondnet/vercel-action@v20
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-args: '--prod' # Deploy to production
working-directory: '.' # Adjust if your project is in a subdirectory
vercel-args: '--prod'
working-directory: '.'

0 comments on commit 463bd65

Please sign in to comment.