@ryupold/vode 0.9.5 → 0.9.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,6 +19,15 @@ jobs:
19
19
  registry-url: 'https://registry.npmjs.org'
20
20
  - uses: oven-sh/setup-bun@v2
21
21
  - run: bun run build
22
- - run: bun publish --provenance --access public
22
+ - run: |
23
+ echo "releasing to npm..."
24
+ bun publish --provenance --access public | grep "+ @ryupold/vode@" > version.txt
25
+ NEWVERSION=$(cat version.txt)
26
+ if [[ $NEWVERSION == *"vode"* ]]; then
27
+ echo "...success: $NEWVERSION"
28
+ else
29
+ echo "...failed to publish"
30
+ fi
31
+
23
32
  env:
24
33
  NPM_CONFIG_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryupold/vode",
3
- "version": "0.9.5",
3
+ "version": "0.9.6",
4
4
  "description": "Small web framework for minimal websites",
5
5
  "author": "Michael Scherbakow (ryupold)",
6
6
  "license": "MIT",
package/version.txt ADDED
File without changes