@@ -82,28 +82,28 @@ jobs:
82
82
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
83
83
84
84
- name : Calculate Checksums for AppImage
85
- run : shasum -a 256 build/target/ark-desktop-wallet-linux-x86_64-2.9.4 .AppImage
85
+ run : shasum -a 256 build/target/ark-desktop-wallet-linux-x86_64-2.9.5 .AppImage
86
86
87
87
- name : Calculate Checksums for TAR
88
- run : shasum -a 256 build/target/ark-desktop-wallet-linux-x64-2.9.4 .tar.gz
88
+ run : shasum -a 256 build/target/ark-desktop-wallet-linux-x64-2.9.5 .tar.gz
89
89
90
90
- name : Calculate Checksums for DEB
91
- run : shasum -a 256 build/target/ark-desktop-wallet-linux-amd64-2.9.4 .deb
91
+ run : shasum -a 256 build/target/ark-desktop-wallet-linux-amd64-2.9.5 .deb
92
92
93
93
- name : VirusTotal Scan for AppImage
94
94
run : |
95
95
UPLOAD_URL=$(curl -s --location --url 'https://www.virustotal.com/vtapi/v2/file/scan/upload_url?apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' | jq -r .upload_url)
96
- curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-x86_64-2.9.4 .AppImage' | jq -r .permalink
96
+ curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-x86_64-2.9.5 .AppImage' | jq -r .permalink
97
97
98
98
- name : VirusTotal Scan for TAR
99
99
run : |
100
100
UPLOAD_URL=$(curl -s --location --url 'https://www.virustotal.com/vtapi/v2/file/scan/upload_url?apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' | jq -r .upload_url)
101
- curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-x64-2.9.4 .tar.gz' | jq -r .permalink
101
+ curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-x64-2.9.5 .tar.gz' | jq -r .permalink
102
102
103
103
- name : VirusTotal Scan for DEB
104
104
run : |
105
105
UPLOAD_URL=$(curl -s --location --url 'https://www.virustotal.com/vtapi/v2/file/scan/upload_url?apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' | jq -r .upload_url)
106
- curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-amd64-2.9.4 .deb' | jq -r .permalink
106
+ curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-amd64-2.9.5 .deb' | jq -r .permalink
107
107
108
108
publish-macos :
109
109
needs : ["create-release"]
@@ -148,20 +148,20 @@ jobs:
148
148
CSC_KEY_PASSWORD : ${{ secrets.CSC_KEY_PASSWORD }}
149
149
150
150
- name : Calculate Checksums for DMG
151
- run : shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.4 .dmg
151
+ run : shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.5 .dmg
152
152
153
153
- name : Calculate Checksums for ZIP
154
- run : shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.4 .zip
154
+ run : shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.5 .zip
155
155
156
156
- name : VirusTotal Scan for DMG
157
157
run : |
158
158
UPLOAD_URL=$(curl -s --location --url 'https://www.virustotal.com/vtapi/v2/file/scan/upload_url?apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' | jq -r .upload_url)
159
- curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-mac-2.9.4 .dmg' | jq -r .permalink
159
+ curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-mac-2.9.5 .dmg' | jq -r .permalink
160
160
161
161
- name : VirusTotal Scan for ZIP
162
162
run : |
163
163
UPLOAD_URL=$(curl -s --location --url 'https://www.virustotal.com/vtapi/v2/file/scan/upload_url?apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' | jq -r .upload_url)
164
- curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-mac-2.9.4 .zip' | jq -r .permalink
164
+ curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-mac-2.9.5 .zip' | jq -r .permalink
165
165
166
166
publish-windows :
167
167
needs : ["create-release"]
@@ -199,5 +199,5 @@ jobs:
199
199
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
200
200
201
201
- name : Calculate Checksums for EXE
202
- run : Get-FileHash build/target/ark-desktop-wallet-win-2.9.4 .exe -Algorithm SHA256 | Format-List
202
+ run : Get-FileHash build/target/ark-desktop-wallet-win-2.9.5 .exe -Algorithm SHA256 | Format-List
203
203
shell : powershell
0 commit comments