mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-14 10:26:19 +01:00
Change Docker image tag logic to support pull_request_target trigger (#11984)
This commit is contained in:
parent
62112b99a9
commit
334b82764c
2
.github/workflows/build-web.yml
vendored
2
.github/workflows/build-web.yml
vendored
@ -216,7 +216,7 @@ jobs:
|
||||
- name: Generate Docker image tag
|
||||
id: tag
|
||||
run: |
|
||||
if [[ $(grep "pull" <<< "${GITHUB_REF}") ]]; then
|
||||
if [[ "${GITHUB_EVENT_NAME}" == "pull_request_target" ]]; then
|
||||
IMAGE_TAG=$(echo "${GITHUB_HEAD_REF}" | sed "s#/#-#g")
|
||||
else
|
||||
IMAGE_TAG=$(echo "${GITHUB_REF_NAME}" | sed "s#/#-#g")
|
||||
|
Loading…
Reference in New Issue
Block a user