Skip to content

Commit cd34425

Browse files
authored
test BUILD_NUM fix 4
1 parent 8e6c517 commit cd34425

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/docker-image.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
env:
1818
# dynamic doesn't work, only static
19-
BUILD_NUM: $(date +%Y%m%d%H%M%S)
19+
BUILD_NUM: $( date +%Y%m%d%H%M%S )
2020
REPOSITORY:
2121
TIGER_DOMAIN: clad-github-builder.rit.uw.edu
2222

@@ -28,8 +28,11 @@ jobs:
2828
steps:
2929
- name: export BUILD_NUM to env
3030
run: |
31-
timestamp=$(date +%Y%m%d%H%M%S)
31+
timestamp=$( date +%Y%m%d%H%M%S )
32+
echo $timestamp
3233
echo "BUILD_NUM=$timestamp" >> "$GITHUB_ENV"
34+
- name: print env
35+
run: env | sort
3336

3437
build-degauss-foundry:
3538
runs-on: self-hosted

0 commit comments

Comments
 (0)