Skip to content

Commit 7b7f4a4

Browse files
authored
chore: Fix release script (#153)
1 parent 8926c71 commit 7b7f4a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
# 4. the title prefix 'chore: Release '.
7575
if: >
7676
github.event.pull_request.merged &&
77-
github.ref == 'main' &&
77+
github.ref == 'refs/heads/main' &&
7878
contains(github.event.pull_request.labels.*.name, 'release:publish') &&
7979
startsWith(github.event.pull_request.title, 'chore: Release ')
8080

Diff for: src/firebase_functions/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
Firebase Functions for Python.
1616
"""
1717

18-
__version__ = "0.1.2"
18+
__version__ = "0.1.1"

0 commit comments

Comments
 (0)