diff options
| author | Menny Even Danan <menny@evendanan.net> | 2020-03-26 14:46:07 +0000 |
|---|---|---|
| committer | Menny Even Danan <menny@evendanan.net> | 2020-03-26 14:46:16 +0000 |
| commit | 00455716d9e40c7839ad21ee9b4709f41f4785fb (patch) | |
| tree | 52d753629500ac56bcb8f78b6667d9ce762cecd2 /.github | |
| parent | 0cf90e52cae29bc2d10a35a49d9cad7466b21423 (diff) | |
| download | AnySoftKeyboard-00455716d9e40c7839ad21ee9b4709f41f4785fb.tar.gz AnySoftKeyboard-00455716d9e40c7839ad21ee9b4709f41f4785fb.tar.bz2 | |
fix deployment ref argument
We need to specify which ref/branch we are using since GH will default to master if the SHA is the master HEAD.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/deployment_promote.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/deployment_promote.yml b/.github/workflows/deployment_promote.yml index 39282fe8a..f94b71420 100644 --- a/.github/workflows/deployment_promote.yml +++ b/.github/workflows/deployment_promote.yml @@ -24,7 +24,7 @@ jobs: uses: ./.github/actions/deploy-request with: sha: ${{ github.sha }} - ref: ${{ github.ref }} + ref: ${{ matrix.refname }} new_deploy: false api_username: ${{ secrets.BOT_MASTER_RW_GITHUB_USERNAME }} api_token: ${{ secrets.BOT_MASTER_RW_GITHUB_TOKEN }} |
