Skip to content

Commit 5f6221a

Browse files
committed
Update node.js.yml
1 parent 2c0d4f2 commit 5f6221a

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

.github/workflows/node.js.yml

+26-26
Original file line numberDiff line numberDiff line change
@@ -58,22 +58,22 @@ jobs:
5858
- name: Upload .${{ matrix.release_format }} file
5959
uses: actions/upload-artifact@v3
6060
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 }}
6363

6464
- name: Upload linux appimage
6565
if: matrix.os == 'ubuntu-latest'
6666
uses: actions/upload-artifact@v3
6767
with:
68-
name: BeetSetup.AppImage
69-
path: dist/BeetSetup.AppImage
68+
name: BeetEOSSetup.AppImage
69+
path: dist/BeetEOSSetup.AppImage
7070

7171
- name: Upload .exe.blockmap
7272
if: matrix.release_format == 'exe'
7373
uses: actions/upload-artifact@v3
7474
with:
75-
name: BeetSetup.exe.blockmap
76-
path: dist/BeetSetup.exe.blockmap
75+
name: BeetEOSSetup.exe.blockmap
76+
path: dist/BeetEOSSetup.exe.blockmap
7777

7878
- name: Upload latest.yml file
7979
if: matrix.release_format == 'exe'
@@ -92,12 +92,12 @@ jobs:
9292
- name: Download exe
9393
uses: actions/download-artifact@v3
9494
with:
95-
name: BeetSetup.exe
95+
name: BeetEOSSetup.exe
9696
path: ~/
9797
- name: Download exe blockmap
9898
uses: actions/download-artifact@v3
9999
with:
100-
name: BeetSetup.exe.blockmap
100+
name: BeetEOSSetup.exe.blockmap
101101
path: ~/
102102
- name: Download latest yml
103103
uses: actions/download-artifact@v3
@@ -107,36 +107,36 @@ jobs:
107107
- name: Download dmg
108108
uses: actions/download-artifact@v3
109109
with:
110-
name: BeetSetup.dmg
110+
name: BeetEOSSetup.dmg
111111
path: ~/
112112
- name: Download deb
113113
uses: actions/download-artifact@v3
114114
with:
115-
name: BeetSetup.deb
115+
name: BeetEOSSetup.deb
116116
path: ~/
117117
- name: Download AppImage
118118
uses: actions/download-artifact@v3
119119
with:
120-
name: BeetSetup.AppImage
120+
name: BeetEOSSetup.AppImage
121121
path: ~/
122122
- name: Calculate hashes
123123
id: calc_hash
124124
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)"
126126
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)"
131131
- name: Perform release
132132
uses: BTS-CM/action-gh-release@cd28b0f5ee8571b76cfdaa62a30d51d752317477
133133
with:
134134
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
140140
/home/runner/latest.yml
141141
tag_name: ${{ needs.create_release.outputs.tag-name }}
142142
body: |
@@ -146,11 +146,11 @@ jobs:
146146
--------
147147
| Platform | SHA256 Checksum |
148148
|---|---|
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}}`|
154154
|[Latest.yml](https://github.com/bitshares/beet/releases/download/${{ github.ref_name }}/latest.yml)|`${{steps.calc_hash.outputs.ymlhash}}`|
155155
env:
156156
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)