diff options
author | Francis Lavoie <[email protected]> | 2020-06-30 15:36:17 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-30 15:36:17 -0400 |
commit | 2d0f8831f86a384f2cd409d60136ed6cd1225f32 (patch) | |
tree | 4a84adac22c4999c6e20d278b42f23569704109d | |
parent | d7dbf8552562edcfb53ab2024d8ceccc33823021 (diff) | |
download | caddy-2d0f8831f86a384f2cd409d60136ed6cd1225f32.tar.gz caddy-2d0f8831f86a384f2cd409d60136ed6cd1225f32.zip |
ci: Fix another oops with publish workflow (#3536)
-rw-r--r-- | .github/workflows/release_published.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release_published.yml b/.github/workflows/release_published.yml index 5b92a9133..b75358bdd 100644 --- a/.github/workflows/release_published.yml +++ b/.github/workflows/release_published.yml @@ -30,5 +30,5 @@ jobs: token: ${{ secrets.REPO_DISPATCH_TOKEN }} repository: caddyserver/caddy-docker event-type: release-tagged - client-payload: '{"tag": "${{ github.release.tag_name }}"}' + client-payload: '{"tag": "${{ github.event.release.tag_name }}"}' |