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 de8b49e commit 0af4bd3Copy full SHA for 0af4bd3
.github/workflows/build_runtime_images.yaml
@@ -29,14 +29,14 @@ jobs:
29
FAST_VERSION=$(python3 get_latest_fast_version.py)
30
echo "FAST_VERSION=$FAST_VERSION" >> "$GITHUB_ENV"
31
if [ "${{ matrix.vgl }}" = "true" ]; then
32
- echo "VGL_TAG=-vgl" >> "$GITHUB_ENV"
+ VGL_TAG=-vgl
33
else
34
- echo "VGL_TAG=" >> "$GITHUB_ENV"
+ VGL_TAG=
35
fi
36
if [ "${{ matrix.x_server }}" = "none" ]; then
37
- echo "X_TAG=no_x" >> "$GITHUB_ENV"
+ X_TAG=no_x
38
39
- echo "X_TAG=${{ matrix.x_server }}" >> "$GITHUB_ENV"
+ X_TAG=${{ matrix.x_server }}
40
41
IMAGE_NAME=fast:${FAST_VERSION}-${{ matrix.type }}-${{ matrix.opencl }}-$X_TAG-$VGL_TAG
42
IMAGE_FILENAME=fast-${FAST_VERSION}-${{ matrix.type }}-${{ matrix.opencl }}-$X_TAG-$VGL_TAG.tar
0 commit comments