Skip to content

Commit

Permalink
Fix package update in destination release (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
tovbinm authored Jun 17, 2022
1 parent 61e7c3b commit 9533b0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ jobs:
- name: Publish Faros Destination package
run: |
cd destinations/airbyte-faros-destination && \
cat package.json | jq --arg V "${{ env.TAG_VERSION }}" '.dependencies."faros-airbyte-cdk" = $V' > package.json && \
cat package.json | jq --arg V "${{ env.TAG_VERSION }}" '.dependencies."faros-airbyte-cdk" = $V' > package.tmp && \
mv package.tmp package.json &&
npm i && \
npm version ${{ env.TAG_VERSION }} && \
npm publish --access public --tag latest
Expand Down

0 comments on commit 9533b0a

Please sign in to comment.