@futdevpro/fsm-dynamo 1.9.48 → 1.9.49

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.
@@ -198,6 +198,13 @@ jobs:
198
198
  runs-on: ubuntu-latest
199
199
  if: always()
200
200
  steps:
201
+ - name: Get This Version
202
+ run: |
203
+ RAW_THIS_VERSION=$(node -p -e "require('./package.json').version")
204
+ # replace ALL: 'v0' with '', '01' with '1', '.0' with '.'
205
+ RAW_THIS_VERSION=$(echo $RAW_THIS_VERSION | sed 's:v0::g' | sed 's:01:1:g' | sed -e 's:\.0:\.:g')
206
+ echo "THIS_VERSION=$RAW_THIS_VERSION" >> $GITHUB_ENV
207
+
201
208
  - uses: actions/checkout@master
202
209
  - name: send custom message with args
203
210
  uses: appleboy/discord-action@master
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@futdevpro/fsm-dynamo",
3
- "version": "01.09.48",
3
+ "version": "01.09.49",
4
4
  "description": "Full Stack Model Collection for Dynamic (NodeJS-Typescript) Framework called Dynamo, by Future Development Ltd.",
5
5
  "scripts": {
6
6
  "prep": "npm i pnpm -g && npm i rimraf nodemon -g",