Skip to content

Commit

Permalink
Actions의 secret사용 방법 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lexifdev committed Aug 23, 2024
1 parent 1e84798 commit e01d145
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ jobs:
run: pip install -r requirements.txt

- name: Download database
run: wget -O db.sqlite3 ${{ secrets.DB_FILE_URL }}
env:
DB_FILE_URL: ${{ secrets.DB_FILE_URL }}
run: wget -O db.sqlite3 $DB_FILE_URL

- name: Deploy to Vercel
run: vercel --token ${{ secrets.VERCEL_TOKEN }} --prod
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
run: vercel --token $VERCEL_TOKEN --prod

0 comments on commit e01d145

Please sign in to comment.