We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8723d0d commit 92d146aCopy full SHA for 92d146a
1 file changed
.github/workflows/run_tests.yml
@@ -9,6 +9,9 @@ jobs:
9
steps:
10
- uses: actions/checkout@v4.2.2
11
12
+ - name: Set timestamp variable
13
+ id: timestamp
14
+ run: echo "datetime=$(date +'%Y-%m-%d_%H-%M-%S')" >> $GITHUB_OUTPUT
15
- name: Setup .NET
16
uses: actions/setup-dotnet@v4
17
with:
@@ -23,12 +26,6 @@ jobs:
23
26
run: dotnet run --project AudioCuesheetEditor &
24
27
- name: Run tests
25
28
run: dotnet test
-
- # Add this step to generate a timestamp and set it as an output
- - name: Set timestamp variable
29
- id: timestamp
30
- run: echo "datetime=$(date +'%Y-%m-%d_%H-%M-%S')" >> $GITHUB_OUTPUT
31
32
- name: Upload traces
33
if: always()
34
uses: actions/upload-artifact@v4
0 commit comments