diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aeff185..7a648fe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,3 +36,15 @@ jobs: cd tests/ cruise init cruise run -profile ci_stub -stub + + build-status: # https://github.com/orgs/community/discussions/4324#discussioncomment-3477871 + runs-on: ubuntu-latest + needs: [build] + if: always() + steps: + - name: Successful build + if: ${{ !(contains(needs.*.result, 'failure')) }} + run: exit 0 + - name: Failing build + if: ${{ contains(needs.*.result, 'failure') }} + run: exit 1 diff --git a/CHANGELOG.md b/CHANGELOG.md index f3d1a19..c4ee400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ -## development version +## CRUISE 0.1.1 ### Bug fixes - All scripts in the bin directory are now made executable for all users on biowulf (#25). -- Libraries are now copied to the assets directory (#26). +- Data directories are copied recursively during python package installation (#26). -## CRUISE v0.1.0 +## CRUISE 0.1.0 This is the first release of CRUISE 🎉 diff --git a/VERSION b/VERSION index cafa08a..17e51c3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.1-dev.1 +0.1.1