Commit 24be3ba 1 parent e21e60f commit 24be3ba Copy full SHA for 24be3ba
File tree 1 file changed +1
-6
lines changed
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 60
60
61
61
container_tags=()
62
62
# The following is run when the timer is triggered or a merge/push to main
63
- TIMESTAMP="$(date +%Y%m%d.%H%M )"
63
+ TIMESTAMP="$(date +%Y%m%d)"
64
64
65
65
container_tags+=("${{ matrix.major_version }}-${{ matrix.driver_version }}")
66
66
@@ -74,25 +74,20 @@ jobs:
74
74
BRANCH="oldstable"
75
75
fi
76
76
77
- container_tags+=("${BRANCH}-${{ matrix.driver_version }}")
78
-
79
77
if [[ "${{ matrix.is_latest_driver }}" == "true" ]]; then
80
78
container_tags+=("${{ matrix.major_version }}-current")
81
- container_tags+=("${BRANCH}-current")
82
79
container_tags+=("${BRANCH}")
83
80
container_tags+=("${{ matrix.major_version }}")
84
81
fi
85
82
86
83
# Append matching timestamp tags to keep a version history
87
84
for TAG in "${container_tags[@]}"; do
88
85
container_tags+=("${TAG}-${TIMESTAMP}")
89
- container_tags+=("${TAG}-${TIMESTAMP%.*}")
90
86
done
91
87
92
88
if [[ "${BRANCH}" == "stable" ]] && \
93
89
[[ "${{ matrix.is_latest_driver }}" == "true" ]]; then
94
90
container_tags+=("${TIMESTAMP}")
95
- container_tags+=("${TIMESTAMP%.*}")
96
91
container_tags+=("latest")
97
92
fi
98
93
You can’t perform that action at this time.
0 commit comments