File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,16 @@ jobs:
2626 - name : Test
2727 run : dotnet test --no-restore --verbosity normal
2828
29+ - name : Bundle artifacts
30+ run : |
31+ cd ./HearthDb/bin/Release/netstandard2.0
32+ zip HearthDb.zip HearthDb.dll HearthDb.xml
33+
2934 - name : Upload artifact
30- if : github.event_name == 'push'
3135 uses : actions/upload-artifact@v4
3236 with :
33- name : HearthDb.dll
34- path : " ./HearthDb/bin/Release/netstandard2.0/HearthDb.dll "
37+ name : HearthDb.zip
38+ path : " ./HearthDb/bin/Release/netstandard2.0/HearthDb.zip "
3539
3640 deploy :
3741 needs : build
4448 - name : Download artifact
4549 uses : actions/download-artifact@v4
4650 with :
47- name : HearthDb.dll
51+ name : HearthDb.zip
4852 path : bin
4953
5054 - name : Configure AWS Credentials
5458 aws-region : us-east-1
5559
5660 - name : Deploy
57- run : aws s3 cp bin/*.dll s3://libs.hearthsim.net/hdt/
61+ run : aws s3 cp bin/*.zip s3://libs.hearthsim.net/hdt/
You can’t perform that action at this time.
0 commit comments