diff options
| author | Menny Even Danan <menny@evendanan.net> | 2020-02-07 22:20:39 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-07 22:20:39 +0000 |
| commit | 20f515f9ce1ec61e0e5068409d378f2d8555c3d8 (patch) | |
| tree | 0cba19f1a9f75cf2758f327edbc439dd527acedf /.github | |
| parent | f96a6615f4726e0bf146b24c9a7b8c0cd501287b (diff) | |
| download | AnySoftKeyboard-20f515f9ce1ec61e0e5068409d378f2d8555c3d8.tar.gz AnySoftKeyboard-20f515f9ce1ec61e0e5068409d378f2d8555c3d8.tar.bz2 | |
Fix deployment id argument
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/deploy.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9d156ad33..fda738838 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,7 @@ jobs: path: build/github_object - uses: ./.github/actions/deploy-status with: - deployment_id: ${{ github.ref }} + deployment_id: ${{ github.event.deployment.id }} state: in_progress environment: ${{ github.event.deployment.environment }} api_user_name: ${{ secrets.BOT_MASTER_RW_GITHUB_USERNAME }} @@ -43,7 +43,7 @@ jobs: - uses: ./.github/actions/deploy-status if: success() with: - deployment_id: ${{ github.ref }} + deployment_id: ${{ github.event.deployment.id }} state: success environment: ${{ github.event.deployment.environment }} api_user_name: ${{ secrets.BOT_MASTER_RW_GITHUB_USERNAME }} @@ -51,7 +51,7 @@ jobs: - uses: ./.github/actions/deploy-status if: failure() with: - deployment_id: ${{ github.ref }} + deployment_id: ${{ github.event.deployment.id }} state: failure environment: ${{ github.event.deployment.environment }} api_user_name: ${{ secrets.BOT_MASTER_RW_GITHUB_USERNAME }} |
