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 ea38f84 commit 78fa8d6Copy full SHA for 78fa8d6
.github/workflows/dev-packages.yml
@@ -32,9 +32,10 @@ jobs:
32
VERSION=$(awk '/^## [0-9]+\.[0-9]+\.[0-9]+/ {print $2; exit}' PowerSync/PowerSync.Common/CHANGELOG.md)
33
echo "Detected Version: $VERSION"
34
echo "VERSION=$VERSION" >> $GITHUB_ENV
35
-
+
36
+ # <Major>.<Minor>.<Patch>-<Pre-release label>.<Number>
37
- name: Run Pack
- run: dotnet pack -c Release -p:Version=$VERSION-dev.$(date +%Y%m%d).$(git rev-parse --short HEAD) -o ${{ github.workspace }}/output
38
+ run: dotnet pack -c Release -p:Version=$VERSION.$(date +%Y%m%d%H%M) -o ${{ github.workspace }}/output
39
40
- name: Run Push
41
run: dotnet nuget push ${{ github.workspace }}\output\*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
0 commit comments