We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e24eb commit bef250bCopy full SHA for bef250b
.github/workflows/dotnet.yml
@@ -19,7 +19,8 @@ jobs:
19
dotnet-version: 5.0.x
20
- name: Restore dependencies
21
run: dotnet restore
22
- - name: Build
+ - name: Build and prepare for release
23
+ id: date
24
run: dotnet build --no-restore && echo "::set-output name=today::$(date +"%d-%m-%y")"
25
26
@@ -29,6 +30,6 @@ jobs:
29
30
files: |
31
/home/runner/work/SharpBoot/SharpBoot/SharpBoot/bin/Debug/net472/SharpBoot.dll
32
name: SharpBoot Release
- tag_name: ${{ steps.Build.outputs.today }}
33
+ tag_name: ${{ steps.date.outputs.today }}
34
env:
35
GITHUB_TOKEN: ${{ secrets.TEST }}
0 commit comments