Skip to content

Commit

Permalink
workflow: Update upload_binary playbook path
Browse files Browse the repository at this point in the history
  • Loading branch information
henrywang committed May 2, 2023
1 parent d9f3f80 commit 55f5484
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/upload-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# Use system default python3 as ansible python interpreter
# By default ansible use /opt/pipx/venvs/ansible-core/bin/python as its python interpreter
- name: Run Ansible playbook to upload x86_64 action-runner
run: ansible-playbook -v -e ansible_python_interpreter=/usr/bin/python3 -e github_actions_architecture=x64 upload/upload_runner_binary.yaml
run: ansible-playbook -v -e ansible_python_interpreter=/usr/bin/python3 -e github_actions_architecture=x64 tools/upload_runner_binary.yaml
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
Expand All @@ -58,7 +58,7 @@ jobs:
S3_BUCKET_NAME: ${{ secrets.S3_BUCKET_NAME_PROD }}

- name: Run Ansible playbook to upload arm64 action-runner
run: ansible-playbook -v -e ansible_python_interpreter=/usr/bin/python3 -e github_actions_architecture=arm64 upload/upload_runner_binary.yaml
run: ansible-playbook -v -e ansible_python_interpreter=/usr/bin/python3 -e github_actions_architecture=arm64 tools/upload_runner_binary.yaml
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
Expand All @@ -84,7 +84,7 @@ jobs:
# Use system default python3 as ansible python interpreter
# By default ansible use /opt/pipx/venvs/ansible-core/bin/python as its python interpreter
- name: Run Ansible playbook to upload action-runner
run: ansible-playbook -v -e ansible_python_interpreter=/usr/bin/python3 -e github_actions_architecture=x64 upload/upload_runner_binary.yaml
run: ansible-playbook -v -e ansible_python_interpreter=/usr/bin/python3 -e github_actions_architecture=x64 tools/upload_runner_binary.yaml
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
Expand All @@ -93,7 +93,7 @@ jobs:
S3_BUCKET_NAME: ${{ secrets.S3_BUCKET_NAME_DEV }}

- name: Run Ansible playbook to upload arm64 action-runner
run: ansible-playbook -v -e ansible_python_interpreter=/usr/bin/python3 -e github_actions_architecture=arm64 upload/upload_runner_binary.yaml
run: ansible-playbook -v -e ansible_python_interpreter=/usr/bin/python3 -e github_actions_architecture=arm64 tools/upload_runner_binary.yaml
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
Expand Down

0 comments on commit 55f5484

Please sign in to comment.