File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change 31
31
run : echo "PACKAGE_VERSION=$(date +'%Y%m%d').${{ github.run_number }}.${{ github.run_attempt }}" >> $GITHUB_ENV
32
32
shell : bash
33
33
34
+ - name : Restore dependencies
35
+ run : dotnet restore
36
+
37
+ - name : Build
38
+ run : dotnet build --configuration Release --no-restore --runtime win-x64
39
+
40
+ - name : Publish
41
+ run : dotnet publish --configuration Release --output ./publish --runtime win-x64
42
+
34
43
- name : Install maven-repository-aws-s3 dependencies
35
44
run : |
36
45
HOME=$(dirname $(readlink -f $(which mvn)))
72
81
</settings>
73
82
EOT
74
83
shell : bash
75
-
76
- - name : Restore dependencies
77
- run : dotnet restore
78
-
79
- - name : Build
80
- run : dotnet build --configuration Release --no-restore --runtime win-x64
81
-
82
- - name : Publish
83
- run : dotnet publish --configuration Release --output ./publish --runtime win-x64
84
84
85
85
- name : Build and push static web package
86
86
run : |
You can’t perform that action at this time.
0 commit comments