We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52156b2 commit c8d9c1aCopy full SHA for c8d9c1a
1 file changed
.github/workflows/deploy.yml
@@ -4,8 +4,10 @@ name: Deploy and Release
4
on:
5
# Triggers the workflow on version change
6
push:
7
+ branches:
8
+ - master
9
paths:
- - "dpath/version.py"
10
+ - dpath/version.py
11
12
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
13
jobs:
@@ -33,7 +35,7 @@ jobs:
33
35
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
36
37
- name: Create Tag
- if: ${{ steps.check-tag.outputs.exists }} == "false"
38
+ if: steps.check-tag.outputs.exists == 'false'
39
uses: negz/create-tag@v1
40
with:
41
version: ${{ steps.get-version.outputs.version }}
0 commit comments