We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab62cc1 commit 0c181c4Copy full SHA for 0c181c4
.github/workflows/dev-packages.yml
@@ -28,7 +28,7 @@ jobs:
28
id: extract_version
29
shell: bash
30
run: |
31
- VERSION=$(awk '/^## [0-9]+\.[0-9]+\.[0-9]+/ {print $2; exit}' PowerSync/PowerSync.Common/CHANGELOG.md)
+ VERSION=$(awk '/^## [0-9]+\.[0-9]+\.[0-9]+-dev(\.[0-9]+)?$/ {print $2; exit}' PowerSync/PowerSync.Common/CHANGELOG.md)
32
echo "Detected Version: $VERSION"
33
echo "VERSION=$VERSION" >> $GITHUB_ENV
34
.github/workflows/release.yml
@@ -7,6 +7,7 @@ jobs:
7
release:
8
name: Release
9
runs-on: windows-latest
10
+ if: github.ref == 'refs/heads/main'
11
12
steps:
13
- name: Checkout Repository
0 commit comments