Skip to content

Commit cfbda43

Browse files
authored
Fix invalid command (#1747)
1 parent 65bedca commit cfbda43

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/prod-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ jobs:
5050
working-directory: ansible-playbook-airflow
5151
run: |
5252
pipenv run ansible-galaxy install -r requirements.yml
53-
cp cp ${{ github.workspace }}/.github/.vault ~/.vault;
53+
cp "${GITHUB_WORKSPACE}/.github/.vault" "${HOME}/.vault"
5454
chmod +x ~/.vault
5555
pipenv run ansible-playbook -i inventory/prod playbook.yml --tags "jumphost,role::airflow::dags" --vault-password-file=~/.vault -e 'ansible_ssh_port=9229' -e cob_datapipeline_branch=$COB_DATAPIPELINE_BRANCH

.github/workflows/qa-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ jobs:
4747
working-directory: ansible-playbook-airflow
4848
run: |
4949
pipenv run ansible-galaxy install -r requirements.yml
50-
cp cp ${{ github.workspace }}/.github/.vault ~/.vault;
50+
cp "${GITHUB_WORKSPACE}/.github/.vault" "${HOME}/.vault"
5151
chmod +x ~/.vault
5252
pipenv run ansible-playbook -i inventory/qa playbook.yml --tags "jumphost,role::airflow::dags" --vault-password-file=~/.vault -e 'ansible_ssh_port=9229'

0 commit comments

Comments
 (0)