diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 9df2c86dd2..13e1ea706d 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -15,6 +15,9 @@ on: - completed branches: - "master" + pull_request: + branches: + - '*' permissions: write-all @@ -47,13 +50,13 @@ jobs: submodules: true fetch-depth: '0' # Required by the tag action - - name: Bump version and push tag - id: bump_version - uses: anothrNick/github-tag-action@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - WITH_V: true # Prefix v to the tag - DEFAULT_BUMP: patch + #- name: Bump version and push tag + # id: bump_version + # uses: anothrNick/github-tag-action@v1 + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # WITH_V: true # Prefix v to the tag + # DEFAULT_BUMP: patch - name: Configure build run: cmake --preset ci @@ -71,16 +74,16 @@ jobs: path: ./builds/ci/package/* retention-days: 1 - - name: Publish Pre-Release - uses: softprops/action-gh-release@v2 - with: - name: "latest" - tag_name: ${{ steps.bump_version.outputs.new_tag }} - generate_release_notes: true - make_latest: true - files: | - ./LICENSE - ./builds/ci/package/* + #- name: Publish Pre-Release + # uses: softprops/action-gh-release@v2 + # with: + # name: "latest" + # tag_name: ${{ steps.bump_version.outputs.new_tag }} + # generate_release_notes: true + # make_latest: true + # files: | + # ./LICENSE + # ./builds/ci/package/* # # LLVM Test Suite #