Skip to content

Commit

Permalink
fix: deploy workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirHosseinKarimi committed Jan 13, 2024
1 parent 30efbd7 commit 656d0ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:

steps:
- uses: actions/checkout@v4
uses: pnpm/action-setup@v2.4.0
- uses: pnpm/action-setup@v2.4.0
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
node-version-file: '.nvmrc'
cache: pnpm
- name: Update Stage
if: github.ref == 'refs/heads/dev'
env:
LIARA_TOKEN: ${{ secrets.LIARA_API_TOKEN }}
run: |
pnpm add -g @liara/cli@5
liara deploy --app="fc-next" --api-token="$LIARA_TOKEN" --no-app-logs
liara deploy --app="fc-next" --api-token="$LIARA_TOKEN" --no-app-logs

0 comments on commit 656d0ab

Please sign in to comment.