File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 22
22
ref : ${{ github.event.release.tag_name || inputs.tag }}
23
23
- uses : salesforcecli/github-workflows/.github/actions/getPreReleaseTag@main
24
24
id : distTag
25
+ - run : echo "[INFO] tag is=$INPUTS_TAG , version is=$INPUTS_VERSION"
26
+ env :
27
+ INPUTS_TAG : ${{ steps.distTag.outputs.tag }}
28
+ INPUTS_VERSION : ${{ steps.distTag.outputs.version }}
25
29
26
30
getMajorVersion :
27
31
needs : [getDistTag]
32
36
- uses : salesforcecli/github-workflows/.github/actions/parse-semver@main
33
37
with :
34
38
input_string : ${{ needs.getDistTag.outputs.version }}
39
+ - name : Echo Tag and version
40
+ shell : bash
41
+ run : echo "[INFO] tag is=$INPUTS_TAG , version is=$INPUTS_VERSION"
42
+ env :
43
+ INPUTS_TAG : ${{ steps.distTag.outputs.tag }}
44
+ INPUTS_VERSION : ${{ steps.distTag.outputs.version }}
45
+ - run : echo "[INFO] Major version is=$INPUTS_MAJOR_VERSION"
46
+ env :
47
+ INPUTS_MAJOR_VERSION : ${{ steps.parsedVersion.outputs.major }}
35
48
36
49
npm :
37
50
uses : salesforcecli/github-workflows/.github/workflows/npmPublish.yml@main
You can’t perform that action at this time.
0 commit comments