5151 - name : Info
5252 env :
5353 GITHUB_REF : ${{ github.ref }}
54+ GRAFANA_COMMIT : ${{ inputs.grafana_commit }}
5455 run : |
5556 echo "GRAFANA_COMMIT: $GRAFANA_COMMIT"
5657 echo "github.ref: $GITHUB_REF"
@@ -66,15 +67,15 @@ jobs:
6667 # not in the last 100 commits.
6768 - name : Verify commit is in workflow HEAD
6869 env :
69- GIT_COMMIT : ${{ github.event. inputs.grafana_commit }}
70+ GIT_COMMIT : ${{ inputs.grafana_commit }}
7071 run : ./.github/workflows/scripts/validate-commit-in-head.sh
7172 shell : bash
7273
7374 - name : Map version type to NPM tag
7475 id : npm-tag
7576 env :
76- VERSION : ${{ github.event. inputs.version }}
77- VERSION_TYPE : ${{ github.event. inputs.version_type }}
77+ VERSION : ${{ inputs.version }}
78+ VERSION_TYPE : ${{ inputs.version_type }}
7879 REFERENCE_PKG : " @grafana/runtime"
7980 run : |
8081 TAG=$(./.github/workflows/scripts/determine-npm-tag.sh)
8586 uses : actions/checkout@v4
8687 with :
8788 persist-credentials : false
88- ref : ${{ github.event. inputs.grafana_commit }}
89+ ref : ${{ inputs.grafana_commit }}
8990
9091 - name : Setup Node
9192 uses : ./.github/actions/setup-node
@@ -102,7 +103,7 @@ jobs:
102103
103104 - name : Version, build, and pack packages
104105 env :
105- VERSION : ${{ github.event. inputs.version }}
106+ VERSION : ${{ inputs.version }}
106107 run : |
107108 yarn run packages:build
108109 yarn lerna version "$VERSION" \
0 commit comments