@futdevpro/fsm-dynamo 1.9.48 → 1.9.50

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,16 @@ jobs:
198
198
  runs-on: ubuntu-latest
199
199
  if: always()
200
200
  steps:
201
+ - name: Checkout code
202
+ uses: actions/checkout@v2
203
+
204
+ - name: Get This Version
205
+ run: |
206
+ RAW_THIS_VERSION=$(node -p -e "require('./package.json').version")
207
+ # replace ALL: 'v0' with '', '01' with '1', '.0' with '.'
208
+ RAW_THIS_VERSION=$(echo $RAW_THIS_VERSION | sed 's:v0::g' | sed 's:01:1:g' | sed -e 's:\.0:\.:g')
209
+ echo "THIS_VERSION=$RAW_THIS_VERSION" >> $GITHUB_ENV
210
+
201
211
  - uses: actions/checkout@master
202
212
  - name: send custom message with args
203
213
  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.50",
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",