diff options
| author | 2025-08-03 20:32:17 +0700 | |
|---|---|---|
| committer | 2025-08-03 20:32:17 +0700 | |
| commit | 00a52ed9b4632bab2c80aab5c5a96754ad0778c5 (patch) | |
| tree | 7a552e68a2af40128b643b25f74c34daafc4f347 /.github/workflows/build-and-deploy.yml | |
| parent | 867cf5bef531ee4caea127cd0663dd307ee869a6 (diff) | |
| download | web-00a52ed9b4632bab2c80aab5c5a96754ad0778c5.tar.gz web-00a52ed9b4632bab2c80aab5c5a96754ad0778c5.zip | |
fix(ansible): use correct format for var names0.3.5
Diffstat (limited to '.github/workflows/build-and-deploy.yml')
| -rw-r--r-- | .github/workflows/build-and-deploy.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index e3bacd2..ffb81c5 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -77,6 +77,6 @@ jobs: ansible-playbook -i inventory.yml -l stage playbook.yml --private-key ~/.ssh/id_ed25519 -u svc_github - -e saya_today_web.b2.key_id=${{ secrets.B2_KEY_ID }} - -e saya_today_web.b2.application_key=${{ secrets.B2_APPLICATION_KEY }} - -e saya_today_web.tag=${{ github.ref_name }} + -e saya_today_web_b2_key_id=${{ secrets.B2_KEY_ID }} + -e saya_today_web_b2_application_key=${{ secrets.B2_APPLICATION_KEY }} + -e saya_today_web_tag=${{ github.ref_name }} |