diff --git a/.github/workflows/draft-artifacts.yml b/.github/workflows/draft-artifacts.yml index a8d0acdb58..233e100c57 100644 --- a/.github/workflows/draft-artifacts.yml +++ b/.github/workflows/draft-artifacts.yml @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 1e5a934c03..606541e5e1 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -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"] @@ -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"] @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c92163b090..5be30e9c28 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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 @@ -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 diff --git a/package.json b/package.json index 63cb9ac5c0..1d19fdda89 100644 --- a/package.json +++ b/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"