diff options
| -rw-r--r-- | .github/workflows/create_release.yml | 10 | ||||
| -rw-r--r-- | .github/workflows/mirror_releases.yml | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 0d2c5a986..7f934a71d 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -275,12 +275,12 @@ jobs: copy_assets: true - # only replicate the given release - limit: 1 - - # Set the minimum version to accept to the release we just created, in combination with only replicating one release this should only replicate the release we just made - min_version: v${{steps.read_version.outputs.content}} + # we generally expect to be up to date so we only replicate a few releases which should be the current one (plus potentially a few more) + limit: 3 + # Working around issues with releases 5.5.2 and earlier that it attempts to replicate even though they already exist + min_version: v5.5.4 + # we skip replicating pre and draft releases to keep the public repo focused on the releases itself skip_prerelease: true skip_draft: true 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 }} |