Skip to content

Commit

Permalink
Workflow syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bpierre committed Apr 11, 2024
1 parent 43b8da9 commit 19cd15b
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/deploy-testnet.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
name: Deploy the contracts + app
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
DEPLOY_CONTRACTS: no

on:
push:
branches: ["deploy-contracts-and-app"]
Expand All @@ -15,14 +12,18 @@ on:
- ".github/workflows/deploy-testnet.yml"
- "contracts/**"

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
deploy-contracts:
name: Deploy contracts to the Liquity v2 Testnet
if: env.DEPLOY_CONTRACTS != 'no'
if: false # Disable contracts deployment for now
runs-on: ubuntu-latest
steps:
- name: Git checkout
Expand Down Expand Up @@ -79,7 +80,7 @@ jobs:
run: pnpm install --global vercel@canary

- name: Download deployment context
if: env.DEPLOY_CONTRACTS != 'no'
if: false # Disable contracts deployment for now
uses: actions/download-artifact@v4
with:
name: deployment-context
Expand Down

0 comments on commit 19cd15b

Please sign in to comment.