We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e954868 commit e94d7ebCopy full SHA for e94d7eb
.github/workflows/ci.yml
@@ -36,7 +36,11 @@ jobs:
36
id: get_version
37
run: |
38
echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
39
- echo "Version: ${{ env.VERSION }}"
+ echo "Version: ${{ steps.get_version.outputs.VERSION }}"
40
+
41
+ - name: Set VERSION environment variable
42
+ run: |
43
+ echo "VERSION=${{ steps.get_version.outputs.VERSION }}" >> $GITHUB_ENV
44
45
- name: cd to docker directory
46
run: cd docker/docker-npu/
0 commit comments