@@ -58,22 +58,22 @@ jobs:
58
58
- name : Upload .${{ matrix.release_format }} file
59
59
uses : actions/upload-artifact@v3
60
60
with :
61
- name : BeetSetup .${{ matrix.release_format }}
62
- path : dist/BeetSetup .${{ matrix.release_format }}
61
+ name : BeetEOSSetup .${{ matrix.release_format }}
62
+ path : dist/BeetEOSSetup .${{ matrix.release_format }}
63
63
64
64
- name : Upload linux appimage
65
65
if : matrix.os == 'ubuntu-latest'
66
66
uses : actions/upload-artifact@v3
67
67
with :
68
- name : BeetSetup .AppImage
69
- path : dist/BeetSetup .AppImage
68
+ name : BeetEOSSetup .AppImage
69
+ path : dist/BeetEOSSetup .AppImage
70
70
71
71
- name : Upload .exe.blockmap
72
72
if : matrix.release_format == 'exe'
73
73
uses : actions/upload-artifact@v3
74
74
with :
75
- name : BeetSetup .exe.blockmap
76
- path : dist/BeetSetup .exe.blockmap
75
+ name : BeetEOSSetup .exe.blockmap
76
+ path : dist/BeetEOSSetup .exe.blockmap
77
77
78
78
- name : Upload latest.yml file
79
79
if : matrix.release_format == 'exe'
@@ -92,12 +92,12 @@ jobs:
92
92
- name : Download exe
93
93
uses : actions/download-artifact@v3
94
94
with :
95
- name : BeetSetup .exe
95
+ name : BeetEOSSetup .exe
96
96
path : ~/
97
97
- name : Download exe blockmap
98
98
uses : actions/download-artifact@v3
99
99
with :
100
- name : BeetSetup .exe.blockmap
100
+ name : BeetEOSSetup .exe.blockmap
101
101
path : ~/
102
102
- name : Download latest yml
103
103
uses : actions/download-artifact@v3
@@ -107,36 +107,36 @@ jobs:
107
107
- name : Download dmg
108
108
uses : actions/download-artifact@v3
109
109
with :
110
- name : BeetSetup .dmg
110
+ name : BeetEOSSetup .dmg
111
111
path : ~/
112
112
- name : Download deb
113
113
uses : actions/download-artifact@v3
114
114
with :
115
- name : BeetSetup .deb
115
+ name : BeetEOSSetup .deb
116
116
path : ~/
117
117
- name : Download AppImage
118
118
uses : actions/download-artifact@v3
119
119
with :
120
- name : BeetSetup .AppImage
120
+ name : BeetEOSSetup .AppImage
121
121
path : ~/
122
122
- name : Calculate hashes
123
123
id : calc_hash
124
124
run : |
125
- echo "::set-output name=blockmaphash::$(sha256sum /home/runner/BeetSetup .exe.blockmap|cut -c-64)"
125
+ echo "::set-output name=blockmaphash::$(sha256sum /home/runner/BeetEOSSetup .exe.blockmap|cut -c-64)"
126
126
echo "::set-output name=ymlhash::$(sha256sum /home/runner/latest.yml|cut -c-64)"
127
- echo "::set-output name=exehash::$(sha256sum /home/runner/BeetSetup .exe|cut -c-64)"
128
- echo "::set-output name=dmghash::$(sha256sum /home/runner/BeetSetup .dmg|cut -c-64)"
129
- echo "::set-output name=debhash::$(sha256sum /home/runner/BeetSetup .deb|cut -c-64)"
130
- echo "::set-output name=apphash::$(sha256sum /home/runner/BeetSetup .AppImage|cut -c-64)"
127
+ echo "::set-output name=exehash::$(sha256sum /home/runner/BeetEOSSetup .exe|cut -c-64)"
128
+ echo "::set-output name=dmghash::$(sha256sum /home/runner/BeetEOSSetup .dmg|cut -c-64)"
129
+ echo "::set-output name=debhash::$(sha256sum /home/runner/BeetEOSSetup .deb|cut -c-64)"
130
+ echo "::set-output name=apphash::$(sha256sum /home/runner/BeetEOSSetup .AppImage|cut -c-64)"
131
131
- name : Perform release
132
132
uses : BTS-CM/action-gh-release@cd28b0f5ee8571b76cfdaa62a30d51d752317477
133
133
with :
134
134
files : |
135
- /home/runner/BeetSetup .exe
136
- /home/runner/BeetSetup .dmg
137
- /home/runner/BeetSetup .deb
138
- /home/runner/BeetSetup .AppImage
139
- /home/runner/BeetSetup .exe.blockmap
135
+ /home/runner/BeetEOSSetup .exe
136
+ /home/runner/BeetEOSSetup .dmg
137
+ /home/runner/BeetEOSSetup .deb
138
+ /home/runner/BeetEOSSetup .AppImage
139
+ /home/runner/BeetEOSSetup .exe.blockmap
140
140
/home/runner/latest.yml
141
141
tag_name : ${{ needs.create_release.outputs.tag-name }}
142
142
body : |
@@ -146,11 +146,11 @@ jobs:
146
146
--------
147
147
| Platform | SHA256 Checksum |
148
148
|---|---|
149
- |[Microsoft Windows](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/BeetSetup .exe)|`${{steps.calc_hash.outputs.exehash}}`|
150
- |[MacOS](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/BeetSetup .dmg)|`${{steps.calc_hash.outputs.dmghash}}`|
151
- |[Linux Deb](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/BeetSetup .deb)|`${{steps.calc_hash.outputs.debhash}}`|
152
- |[Linux AppImage](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/BeetSetup .AppImage)|`${{steps.calc_hash.outputs.apphash}}`|
153
- |[EXE blockmap](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/BeetSetup .exe.blockmap)|`${{steps.calc_hash.outputs.blockmaphash}}`|
149
+ |[Microsoft Windows](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/BeetEOSSetup .exe)|`${{steps.calc_hash.outputs.exehash}}`|
150
+ |[MacOS](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/BeetEOSSetup .dmg)|`${{steps.calc_hash.outputs.dmghash}}`|
151
+ |[Linux Deb](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/BeetEOSSetup .deb)|`${{steps.calc_hash.outputs.debhash}}`|
152
+ |[Linux AppImage](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/BeetEOSSetup .AppImage)|`${{steps.calc_hash.outputs.apphash}}`|
153
+ |[EXE blockmap](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/BeetEOSSetup .exe.blockmap)|`${{steps.calc_hash.outputs.blockmaphash}}`|
154
154
|[Latest.yml](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/latest.yml)|`${{steps.calc_hash.outputs.ymlhash}}`|
155
155
env :
156
156
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
0 commit comments