diff options
| author | Joakim Lindqvist <[email protected]> | 2024-11-28 13:12:50 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-11-28 13:12:50 +0100 |
| commit | b077919f5dd745435dc670118b0f3c7b9bcaf796 (patch) | |
| tree | 213f60ee5da374796b76b53e3047564a5d92bf81 /.github/workflows/mirror_releases.yml | |
| parent | 5.5.14 (diff) | |
| download | zen-b077919f5dd745435dc670118b0f3c7b9bcaf796.tar.xz zen-b077919f5dd745435dc670118b0f3c7b9bcaf796.zip | |
Fixed release mirror on new release (#243)
By removing the minimal version we set (as this is exclusive meaning it would not replicate the current release). As such we cant guarantee that the replication takes the current release so we replicate a few releases.
Also fixed the display name of the step when manually running the release mirroring.
Diffstat (limited to '.github/workflows/mirror_releases.yml')
| -rw-r--r-- | .github/workflows/mirror_releases.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/mirror_releases.yml b/.github/workflows/mirror_releases.yml index 27e1e8135..ff2796746 100644 --- a/.github/workflows/mirror_releases.yml +++ b/.github/workflows/mirror_releases.yml @@ -13,7 +13,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Run action + - name: Replicate release to public github uses: ue-foundation/[email protected] with: token: ${{ secrets.ZEN_RELEASE_GITHUB_EE_TOKEN }} |