Skip to content

Commit

Permalink
ci: do not publish manifest for pre-releases
Browse files Browse the repository at this point in the history
  • Loading branch information
gnuton committed Jan 26, 2024
1 parent b946182 commit 7e4a1d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ jobs:
name: Publish Manifest
needs: build-job
runs-on: ubuntu-latest
if: startsWith(github.event.ref, 'refs/tags/')
if: startsWith(github.event.ref, 'refs/tags/') && !contains(github.event.ref, 'alpha') && !contains(github.event.ref, 'beta')
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -245,4 +245,4 @@ jobs:
echo "Uploading to github manifest and ${RELEASE_NOTE_FILE}"
git add ${UPDATE_DIR}
git commit -m "Updating Notes and manifest to version:${MAJOR_VER} ${MINOR_VER} [skip ci]" -a
git push origin
git push origin

0 comments on commit 7e4a1d8

Please sign in to comment.