File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-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]
30
34
runs-on : ubuntu-latest
31
35
steps :
32
36
- uses : salesforcecli/github-workflows/.github/actions/parse-semver@main
37
+ id : parsedVersion
33
38
with :
34
39
input_string : ${{ needs.getDistTag.outputs.version }}
40
+ - run : echo "[INFO] Major version is=$INPUTS_MAJOR_VERSION"
41
+ env :
42
+ INPUTS_MAJOR_VERSION : ${{ steps.parsedVersion.outputs.major }}
35
43
36
44
npm :
37
45
uses : salesforcecli/github-workflows/.github/workflows/npmPublish.yml@main
You can’t perform that action at this time.
0 commit comments