Skip to content

Commit

Permalink
feat(ci): improve pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil-stc committed Oct 3, 2024
1 parent 6bc7b1f commit 29f8e47
Showing 1 changed file with 9 additions and 30 deletions.
39 changes: 9 additions & 30 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,18 @@ jobs:
build-and-test:
uses: ./.github/workflows/build.yml
create-release:
# needs:
# - docker-build
# - build-and-test
needs:
- docker-build
- build-and-test
runs-on: ubuntu-latest
steps:
# - uses: actions/download-artifact@v3
# with:
# name: thundering-herd-scheduler-binaries
# path: bin
# - name: debug list files
# run: find .
- uses: actions/download-artifact@v3
with:
name: thundering-herd-scheduler-binaries
path: bin
- name: debug list files
run: find .

# - name: Draft Release
# if: contains(github.ref, 'alpha') || contains(github.ref, 'beta')
# uses: softprops/action-gh-release@v1
# with:
# files: bin/thundering-herd-scheduler*
# append_body: true
# draft: true
# body: |
# Build also available as docker image:
# `ghcr.io/${{ github.repository }}:${{ github.ref_name }}`
#
# - name: PreRelease
# if: contains(github.ref, 'rc')
# uses: softprops/action-gh-release@v1
# with:
# files: bin/thundering-herd-scheduler*
# append_body: true
# prerelease: true
# body: |
# Build also available as docker image:
# `ghcr.io/${{ github.repository }}:${{ github.ref_name }}`
- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 29f8e47

Please sign in to comment.