diff options
| author | Joakim Lindqvist <[email protected]> | 2024-09-09 14:32:20 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-09-09 14:32:20 +0200 |
| commit | 3e7c4c81d1528d71cfb4ddd3cae3642c875e528e (patch) | |
| tree | 341fd2fc86b554ab65ef49a225f7dc4c40e7cdd9 /.github/workflows | |
| parent | 5.5.6 (diff) | |
| download | zen-3e7c4c81d1528d71cfb4ddd3cae3642c875e528e.tar.xz zen-3e7c4c81d1528d71cfb4ddd3cae3642c875e528e.zip | |
Fixes to the release replication workflow (#148)
* Use our local copy of the clone-release action
* Avoid pre-releases and draft releases
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/mirror_releases.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/mirror_releases.yml b/.github/workflows/mirror_releases.yml index a2e8dc707..bdf6e5229 100644 --- a/.github/workflows/mirror_releases.yml +++ b/.github/workflows/mirror_releases.yml @@ -1,4 +1,6 @@ name: Mirror Releases to Github.com +env: + ACTIONS_RUNNER_DEBUG: true on: workflow_dispatch: # run every 12 hrs @@ -13,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Run action - uses: andrewthetechie/[email protected] + uses: ue-foundation/[email protected] with: token: ${{ secrets.ZEN_RELEASE_GITHUB_EE_TOKEN }} src_repo: ue-foundation/zen @@ -26,4 +28,6 @@ jobs: copy_assets: true limit: 10 - dry_run: true
\ No newline at end of file + # we skip replicating pre and draft releases to keep the public repo focused on the releases itself + skip_prerelease: true + skip_draft: true
\ No newline at end of file |