Skip to content

Commit

Permalink
Fix escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhung committed Jul 8, 2024
1 parent d538129 commit 51db101
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ jobs:
- name: Set Join Key in system.yaml
uses: mikefarah/yq@master
with:
cmd: yq -i ".shared += {\"security\": {\"joinKey\": \"${{ secrets.ARTIFACTORY_JOIN_KEY }}\"}}" ${{ github.workspace }}/scripts/system.yaml
cmd: |
yq -i '.shared += {"security": {"joinKey": "${{ secrets.ARTIFACTORY_JOIN_KEY }}"}}' ${{ github.workspace }}/scripts/system.yaml
- name: Create Artifactory data directories and copy data
env:
ARTIFACTORY_LICENSE: ${{ secrets.ARTIFACTORY_LICENSE }}
Expand Down

0 comments on commit 51db101

Please sign in to comment.