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.
1 parent 5928aed commit 57cbd4fCopy full SHA for 57cbd4f
.github/workflows/staging.yml
@@ -1,8 +1,8 @@
1
name: "Publish Dev Package"
2
on:
3
push:
4
- branches:
5
- - staging
+ paths:
+ - 'setup.py'
6
7
8
jobs:
@@ -19,12 +19,10 @@ jobs:
19
run: make ci-install
20
21
- name: Get version
22
- run: echo "version=$(grep __version__ setup.py | head -1 | cut -d \" -f2 | cut -d \' -f2 ).dev$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_ENV
+ run: echo "version=$(grep __version__ setup.py | head -1 | cut -d \" -f2 | cut -d \' -f2 )" >> $GITHUB_ENV
23
24
- name: Build package
25
- run: |
26
- make change-version NEW_VERSION="${{ env.version }}"
27
- make package
+ run: make package
28
29
- name: Create release
30
uses: actions/create-release@v1
0 commit comments