Skip to content

Commit

Permalink
ci: fix unescaped character in configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh authored Apr 28, 2021
1 parent db404e8 commit 48509cf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Build API Docker image
run: docker build -t registry.heroku.com/mach-api/web --build-arg APP_VERSION_ARG=$(cat lerna.json | grep -oP '(?<=\"version": ")[a-zA-Z0-9\.-]*(?=\")') -f ./packages/rest-api/Dockerfile .
run: |
docker build -t registry.heroku.com/mach-api/web --build-arg APP_VERSION_ARG=$(cat lerna.json | grep -oP '(?<=\"version"\: ")[a-zA-Z0-9\.-]*(?=\")') -f ./packages/rest-api/Dockerfile .
- name: Login to Heroku Container registry
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
Expand All @@ -51,7 +52,8 @@ jobs:
- name: Yarn install
run: yarn
- name: Set app version variable
run: export NEXT_PUBLIC_APP_VERSION=$(cat lerna.json | grep -oP '(?<=\"version": ")[a-zA-Z0-9\.-]*(?=\")')
run: |
export NEXT_PUBLIC_APP_VERSION=$(cat lerna.json | grep -oP '(?<=\"version": ")[a-zA-Z0-9\.-]*(?=\")')
- name: Run build
run: |
yarn workspace @mach/common build
Expand Down

0 comments on commit 48509cf

Please sign in to comment.