We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06f376e commit 90b5ff7Copy full SHA for 90b5ff7
.github/workflows/e2e-upgrade.yaml
@@ -288,6 +288,14 @@ jobs:
288
run: |
289
cd $GITHUB_WORKSPACE && mkdir workspace
290
291
+ - name: Adjust Year Related Configurations
292
+ run: |
293
+ cd ${{ github.workspace }}/upstream
294
+ now="$(date "+%Y")"
295
+ sed -i "s|2023|${now}|g" test/distributed/cases/function/func_datetime_utc_timestamp.result;
296
+ sed -i "s|2024|${now}|g" test/distributed/cases/function/func_datetime_utc_timestamp.result;
297
+ sed -i "s|2025|${now}|g" test/distributed/cases/function/func_datetime_utc_timestamp.result;
298
+
299
- name: Start the MO of Rlease ${{ steps.get-latest-release.outputs.tag }}
300
301
cd $GITHUB_WORKSPACE/workspace
0 commit comments