Skip to content

Commit dfb8b14

Browse files
committed
temp: add time properly
1 parent fb1d289 commit dfb8b14

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ concurrency:
2121
jobs:
2222
# Since the name of the matrix job depends on the version, we define another job with a more stable name.
2323
test_results:
24-
if: ${{ always() }}
24+
if: always()
2525
runs-on: ubuntu-latest
2626
name: Test Results
2727
needs: [test]
@@ -84,6 +84,8 @@ jobs:
8484
steps:
8585
- name: Set Up Actions
8686
uses: actions/checkout@v4
87+
- name: Set Time in ENV
88+
run: echo "START_TIME=$(date +%Y%m%d%H%M)" >> $GITHUB_ENV
8789
- name: Install GEOS
8890
run: sudo apt-get install -yqq libgeos-dev
8991
- name: Set Up Ruby
@@ -138,6 +140,6 @@ jobs:
138140
if: always()
139141
uses: actions/upload-artifact@v4
140142
with:
141-
name: culprits-${{ matrix.number }}-${{ github.run_started_at }}.txt
143+
name: culprits-${{ matrix.number }}--${{ env.START_TIME }}.txt
142144
path: |
143145
tmp/culprits.txt

0 commit comments

Comments
 (0)