We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94b21c7 commit dd051d6Copy full SHA for dd051d6
.github/workflows/tagged_release.yml
@@ -68,7 +68,11 @@ jobs:
68
69
# This should be removed as soon as we go towards nodejs package repository
70
- name: Pack Project as tgz
71
- run: cd dist/libs/schematic && npm pack && mv esmf-semantic-ui-schematics-1.0.0.tgz ../../../esmf-semantic-ui-schematics-${{ github.event.inputs.release_version }}.tgz
+ run: |
72
+ cd dist/libs/schematic
73
+ sed -i 's/"version": "1.0.0"/"version": "${{ github.event.inputs.release_version }}"/' package.json
74
+ npm pack
75
+ mv esmf-semantic-ui-schematics-${{ github.event.inputs.release_version }}.tgz ../../../
76
77
- name: "Create Github release (full)"
78
if: ${{ !contains( github.event.inputs.release_version, '-rc' ) }}
0 commit comments