@robotical/martyblocks 1.4.3 → 1.4.5

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.
@@ -0,0 +1,29 @@
1
+ name: 'Versioning'
2
+
3
+ on: workflow_dispatch
4
+
5
+ jobs:
6
+ bump-version:
7
+ name: 'Bump Version'
8
+ runs-on: ubuntu-latest
9
+
10
+ steps:
11
+ - name: 'Checkout source code'
12
+ uses: 'actions/checkout@v2'
13
+ with:
14
+ ref: ${{ github.ref }}
15
+ - name: 'cat package.json'
16
+ run: cat ./package.json
17
+ - name: 'Automated Version Bump'
18
+ id: version-bump
19
+ uses: 'phips28/gh-action-bump-version@master'
20
+ with:
21
+ tag-prefix: 'v'
22
+ # env:
23
+ # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
+ - name: 'cat package.json'
25
+ run: cat ./package.json
26
+ - name: 'Output Step'
27
+ env:
28
+ NEW_TAG: ${{ steps.version-bump.outputs.newTag }}
29
+ run: echo "new tag $NEW_TAG"