Skip to content
This repository has been archived by the owner on Mar 23, 2023. It is now read-only.

chore: bump version to 2.9.1 #1850

Merged
merged 1 commit into from
Mar 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/draft-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,20 @@ jobs:
# - name: Upload .AppImage
# uses: actions/upload-artifact@master
# with:
# name: ark-desktop-wallet-linux-2.9.0.AppImage
# path: build/target/ark-desktop-wallet-linux-x86_64-2.9.0.AppImage
# name: ark-desktop-wallet-linux-2.9.1.AppImage
# path: build/target/ark-desktop-wallet-linux-x86_64-2.9.1.AppImage

# - name: Upload .tar.gz
# uses: actions/upload-artifact@master
# with:
# name: ark-desktop-wallet-linux-2.9.0.tar.gz
# path: build/target/ark-desktop-wallet-linux-x64-2.9.0.tar.gz
# name: ark-desktop-wallet-linux-2.9.1.tar.gz
# path: build/target/ark-desktop-wallet-linux-x64-2.9.1.tar.gz

- name: Upload .deb
uses: actions/upload-artifact@master
with:
name: ark-desktop-wallet-linux-2.9.0-${{ github.sha }}.deb
path: build/target/ark-desktop-wallet-linux-amd64-2.9.0.deb
name: ark-desktop-wallet-linux-2.9.1-${{ github.sha }}.deb
path: build/target/ark-desktop-wallet-linux-amd64-2.9.1.deb

build-macOS:
runs-on: macos-latest
Expand Down Expand Up @@ -102,14 +102,14 @@ jobs:
# - name: Upload .zip
# uses: actions/upload-artifact@master
# with:
# name: ark-desktop-wallet-mac-2.9.0.zip
# path: build/target/ark-desktop-wallet-mac-2.9.0.zip
# name: ark-desktop-wallet-mac-2.9.1.zip
# path: build/target/ark-desktop-wallet-mac-2.9.1.zip

- name: Upload .dmg
uses: actions/upload-artifact@v1
with:
name: ark-desktop-wallet-mac-2.9.0-${{ github.sha }}.dmg
path: build/target/ark-desktop-wallet-mac-2.9.0.dmg
name: ark-desktop-wallet-mac-2.9.1-${{ github.sha }}.dmg
path: build/target/ark-desktop-wallet-mac-2.9.1.dmg

build-windows:
runs-on: windows-latest
Expand Down Expand Up @@ -137,5 +137,5 @@ jobs:
- name: Upload .exe
uses: actions/upload-artifact@v1
with:
name: ark-desktop-wallet-win-2.9.0-${{ github.sha }}.exe
path: build/target/ark-desktop-wallet-win-2.9.0.exe
name: ark-desktop-wallet-win-2.9.1-${{ github.sha }}.exe
path: build/target/ark-desktop-wallet-win-2.9.1.exe
22 changes: 11 additions & 11 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,28 +73,28 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Calculate Checksums for AppImage
run: shasum -a 256 build/target/ark-desktop-wallet-linux-x86_64-2.9.0.AppImage
run: shasum -a 256 build/target/ark-desktop-wallet-linux-x86_64-2.9.1.AppImage

- name: Calculate Checksums for TAR
run: shasum -a 256 build/target/ark-desktop-wallet-linux-x64-2.9.0.tar.gz
run: shasum -a 256 build/target/ark-desktop-wallet-linux-x64-2.9.1.tar.gz

- name: Calculate Checksums for DEB
run: shasum -a 256 build/target/ark-desktop-wallet-linux-amd64-2.9.0.deb
run: shasum -a 256 build/target/ark-desktop-wallet-linux-amd64-2.9.1.deb

- name: VirusTotal Scan for AppImage
run: |
UPLOAD_URL=$(curl -s --location --url 'https://www.virustotal.com/vtapi/v2/file/scan/upload_url?apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' | jq -r .upload_url)
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-x86_64-2.9.0.AppImage' | jq -r .permalink
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-x86_64-2.9.1.AppImage' | jq -r .permalink

- name: VirusTotal Scan for TAR
run: |
UPLOAD_URL=$(curl -s --location --url 'https://www.virustotal.com/vtapi/v2/file/scan/upload_url?apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' | jq -r .upload_url)
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-x64-2.9.0.tar.gz' | jq -r .permalink
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-x64-2.9.1.tar.gz' | jq -r .permalink

- name: VirusTotal Scan for DEB
run: |
UPLOAD_URL=$(curl -s --location --url 'https://www.virustotal.com/vtapi/v2/file/scan/upload_url?apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' | jq -r .upload_url)
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-amd64-2.9.0.deb' | jq -r .permalink
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-linux-amd64-2.9.1.deb' | jq -r .permalink

publish-macos:
# needs: ["create-release"]
Expand Down Expand Up @@ -139,20 +139,20 @@ jobs:
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}

- name: Calculate Checksums for DMG
run: shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.0.dmg
run: shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.1.dmg

- name: Calculate Checksums for ZIP
run: shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.0.zip
run: shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.1.zip

- name: VirusTotal Scan for DMG
run: |
UPLOAD_URL=$(curl -s --location --url 'https://www.virustotal.com/vtapi/v2/file/scan/upload_url?apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' | jq -r .upload_url)
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-mac-2.9.0.dmg' | jq -r .permalink
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-mac-2.9.1.dmg' | jq -r .permalink

- name: VirusTotal Scan for ZIP
run: |
UPLOAD_URL=$(curl -s --location --url 'https://www.virustotal.com/vtapi/v2/file/scan/upload_url?apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' | jq -r .upload_url)
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-mac-2.9.0.zip' | jq -r .permalink
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-mac-2.9.1.zip' | jq -r .permalink

publish-windows:
# needs: ["create-release"]
Expand Down Expand Up @@ -190,5 +190,5 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Calculate Checksums for EXE
run: Get-FileHash build/target/ark-desktop-wallet-win-2.9.0.exe -Algorithm SHA256 | Format-List
run: Get-FileHash build/target/ark-desktop-wallet-win-2.9.1.exe -Algorithm SHA256 | Format-List
shell: powershell
24 changes: 12 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,20 +90,20 @@ jobs:
# - name: Upload .AppImage
# uses: actions/upload-artifact@master
# with:
# name: ark-desktop-wallet-linux-2.9.0.AppImage
# path: build/target/ark-desktop-wallet-linux-x86_64-2.9.0.AppImage
# name: ark-desktop-wallet-linux-2.9.1.AppImage
# path: build/target/ark-desktop-wallet-linux-x86_64-2.9.1.AppImage

# - name: Upload .tar.gz
# uses: actions/upload-artifact@master
# with:
# name: ark-desktop-wallet-linux-2.9.0.tar.gz
# path: build/target/ark-desktop-wallet-linux-x64-2.9.0.tar.gz
# name: ark-desktop-wallet-linux-2.9.1.tar.gz
# path: build/target/ark-desktop-wallet-linux-x64-2.9.1.tar.gz

- name: Upload .deb
uses: actions/upload-artifact@master
with:
name: ark-desktop-wallet-linux-2.9.0-${{ github.sha }}.deb
path: build/target/ark-desktop-wallet-linux-amd64-2.9.0.deb
name: ark-desktop-wallet-linux-2.9.1-${{ github.sha }}.deb
path: build/target/ark-desktop-wallet-linux-amd64-2.9.1.deb

build-macOS:
runs-on: macos-latest
Expand Down Expand Up @@ -138,14 +138,14 @@ jobs:
# - name: Upload .zip
# uses: actions/upload-artifact@master
# with:
# name: ark-desktop-wallet-mac-2.9.0.zip
# path: build/target/ark-desktop-wallet-mac-2.9.0.zip
# name: ark-desktop-wallet-mac-2.9.1.zip
# path: build/target/ark-desktop-wallet-mac-2.9.1.zip

- name: Upload .dmg
uses: actions/upload-artifact@v1
with:
name: ark-desktop-wallet-mac-2.9.0-${{ github.sha }}.dmg
path: build/target/ark-desktop-wallet-mac-2.9.0.dmg
name: ark-desktop-wallet-mac-2.9.1-${{ github.sha }}.dmg
path: build/target/ark-desktop-wallet-mac-2.9.1.dmg

build-windows:
runs-on: windows-latest
Expand Down Expand Up @@ -173,5 +173,5 @@ jobs:
- name: Upload .exe
uses: actions/upload-artifact@v1
with:
name: ark-desktop-wallet-win-2.9.0-${{ github.sha }}.exe
path: build/target/ark-desktop-wallet-win-2.9.0.exe
name: ark-desktop-wallet-win-2.9.1-${{ github.sha }}.exe
path: build/target/ark-desktop-wallet-win-2.9.1.exe
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "ark-desktop-wallet",
"version": "2.9.0",
"version": "2.9.1",
"repository": {
"type": "git",
"url": "git+https://github.com/ArkEcosystem/desktop-wallet.git"
Expand Down