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

Commit

Permalink
chore: bump version (#2213)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarnsley committed Jun 22, 2020
1 parent 003d031 commit 7886967
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 36 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/draft-artifacts.yml
Expand Up @@ -46,20 +46,20 @@ jobs:
# - name: Upload .AppImage
# uses: actions/upload-artifact@master
# with:
# name: ark-desktop-wallet-linux-2.9.1.AppImage
# path: build/target/ark-desktop-wallet-linux-x86_64-2.9.1.AppImage
# name: ark-desktop-wallet-linux-2.9.2.AppImage
# path: build/target/ark-desktop-wallet-linux-x86_64-2.9.2.AppImage

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

- name: Upload .deb
uses: actions/upload-artifact@master
with:
name: ark-desktop-wallet-linux-2.9.1-${{ github.sha }}.deb
path: build/target/ark-desktop-wallet-linux-amd64-2.9.1.deb
name: ark-desktop-wallet-linux-2.9.2-${{ github.sha }}.deb
path: build/target/ark-desktop-wallet-linux-amd64-2.9.2.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.1.zip
# path: build/target/ark-desktop-wallet-mac-2.9.1.zip
# name: ark-desktop-wallet-mac-2.9.2.zip
# path: build/target/ark-desktop-wallet-mac-2.9.2.zip

- name: Upload .dmg
uses: actions/upload-artifact@v1
with:
name: ark-desktop-wallet-mac-2.9.1-${{ github.sha }}.dmg
path: build/target/ark-desktop-wallet-mac-2.9.1.dmg
name: ark-desktop-wallet-mac-2.9.2-${{ github.sha }}.dmg
path: build/target/ark-desktop-wallet-mac-2.9.2.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.1-${{ github.sha }}.exe
path: build/target/ark-desktop-wallet-win-2.9.1.exe
name: ark-desktop-wallet-win-2.9.2-${{ github.sha }}.exe
path: build/target/ark-desktop-wallet-win-2.9.2.exe
22 changes: 11 additions & 11 deletions .github/workflows/publish-release.yml
Expand Up @@ -82,28 +82,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.1.AppImage
run: shasum -a 256 build/target/ark-desktop-wallet-linux-x86_64-2.9.2.AppImage

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

- name: Calculate Checksums for DEB
run: shasum -a 256 build/target/ark-desktop-wallet-linux-amd64-2.9.1.deb
run: shasum -a 256 build/target/ark-desktop-wallet-linux-amd64-2.9.2.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.1.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.2.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.1.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.2.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.1.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.2.deb' | jq -r .permalink
publish-macos:
needs: ["create-release"]
Expand Down Expand Up @@ -148,20 +148,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.1.dmg
run: shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.2.dmg

- name: Calculate Checksums for ZIP
run: shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.1.zip
run: shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.2.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.1.dmg' | jq -r .permalink
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-mac-2.9.2.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.1.zip' | jq -r .permalink
curl -s --url "$UPLOAD_URL" --form 'apikey=${{ secrets.VIRUSTOTAL_TOKEN }}' --form 'file=@build/target/ark-desktop-wallet-mac-2.9.2.zip' | jq -r .permalink
publish-windows:
needs: ["create-release"]
Expand Down Expand Up @@ -199,5 +199,5 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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

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

- name: Upload .deb
uses: actions/upload-artifact@master
with:
name: ark-desktop-wallet-linux-2.9.1-${{ github.sha }}.deb
path: build/target/ark-desktop-wallet-linux-amd64-2.9.1.deb
name: ark-desktop-wallet-linux-2.9.2-${{ github.sha }}.deb
path: build/target/ark-desktop-wallet-linux-amd64-2.9.2.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.1.zip
# path: build/target/ark-desktop-wallet-mac-2.9.1.zip
# name: ark-desktop-wallet-mac-2.9.2.zip
# path: build/target/ark-desktop-wallet-mac-2.9.2.zip

- name: Upload .dmg
uses: actions/upload-artifact@v1
with:
name: ark-desktop-wallet-mac-2.9.1-${{ github.sha }}.dmg
path: build/target/ark-desktop-wallet-mac-2.9.1.dmg
name: ark-desktop-wallet-mac-2.9.2-${{ github.sha }}.dmg
path: build/target/ark-desktop-wallet-mac-2.9.2.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.1-${{ github.sha }}.exe
path: build/target/ark-desktop-wallet-win-2.9.1.exe
name: ark-desktop-wallet-win-2.9.2-${{ github.sha }}.exe
path: build/target/ark-desktop-wallet-win-2.9.2.exe
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"private": true,
"name": "ark-desktop-wallet",
"version": "2.9.1",
"version": "2.9.2",
"repository": {
"type": "git",
"url": "git+https://github.com/ArkEcosystem/desktop-wallet.git"
Expand Down

0 comments on commit 7886967

Please sign in to comment.