We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 84335bd + fa5f53f commit e71eecaCopy full SHA for e71eeca
.github/workflows/build.yml
@@ -12,15 +12,16 @@ on:
12
jobs:
13
update_version:
14
name: Update dev version
15
- if: github.ref == 'refs/heads/master'
16
runs-on: ubuntu-latest
17
steps:
18
- name: checkout
19
uses: actions/checkout@v4
20
- name: Increment VERSION
+ if: github.ref == 'refs/heads/master'
21
run: |
22
version="$(cat VERSION)"; python -c "b, n = '$version'.split('v'); print('v'.join([b, str(int(n)+1)]))" > VERSION
23
- name: Add commit
24
25
26
git config --global user.email "Version_Incrementer@gh_bot"
27
git config --global user.name "Version Incrementer"
@@ -32,7 +33,6 @@ jobs:
32
33
34
build:
35
name: Build qutip-jax
- if: ${{ always() }}
36
needs: update_version
37
38
0 commit comments