diff --git a/.github/workflows/draft-artifacts.yml b/.github/workflows/draft-artifacts.yml index ea4427bba7..01f716d289 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.3.AppImage - # path: build/target/ark-desktop-wallet-linux-x86_64-2.9.3.AppImage + # name: ark-desktop-wallet-linux-2.9.4.AppImage + # path: build/target/ark-desktop-wallet-linux-x86_64-2.9.4.AppImage # - name: Upload .tar.gz # uses: actions/upload-artifact@master # with: - # name: ark-desktop-wallet-linux-2.9.3.tar.gz - # path: build/target/ark-desktop-wallet-linux-x64-2.9.3.tar.gz + # name: ark-desktop-wallet-linux-2.9.4.tar.gz + # path: build/target/ark-desktop-wallet-linux-x64-2.9.4.tar.gz - name: Upload .deb uses: actions/upload-artifact@master with: - name: ark-desktop-wallet-linux-2.9.3-${{ github.sha }}.deb - path: build/target/ark-desktop-wallet-linux-amd64-2.9.3.deb + name: ark-desktop-wallet-linux-2.9.4-${{ github.sha }}.deb + path: build/target/ark-desktop-wallet-linux-amd64-2.9.4.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.3.zip - # path: build/target/ark-desktop-wallet-mac-2.9.3.zip + # name: ark-desktop-wallet-mac-2.9.4.zip + # path: build/target/ark-desktop-wallet-mac-2.9.4.zip - name: Upload .dmg uses: actions/upload-artifact@v1 with: - name: ark-desktop-wallet-mac-2.9.3-${{ github.sha }}.dmg - path: build/target/ark-desktop-wallet-mac-2.9.3.dmg + name: ark-desktop-wallet-mac-2.9.4-${{ github.sha }}.dmg + path: build/target/ark-desktop-wallet-mac-2.9.4.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.3-${{ github.sha }}.exe - path: build/target/ark-desktop-wallet-win-2.9.3.exe + name: ark-desktop-wallet-win-2.9.4-${{ github.sha }}.exe + path: build/target/ark-desktop-wallet-win-2.9.4.exe diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index e909234bc4..14ac026a1b 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.3.AppImage + run: shasum -a 256 build/target/ark-desktop-wallet-linux-x86_64-2.9.4.AppImage - name: Calculate Checksums for TAR - run: shasum -a 256 build/target/ark-desktop-wallet-linux-x64-2.9.3.tar.gz + run: shasum -a 256 build/target/ark-desktop-wallet-linux-x64-2.9.4.tar.gz - name: Calculate Checksums for DEB - run: shasum -a 256 build/target/ark-desktop-wallet-linux-amd64-2.9.3.deb + run: shasum -a 256 build/target/ark-desktop-wallet-linux-amd64-2.9.4.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.3.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.4.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.3.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.4.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.3.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.4.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.3.dmg + run: shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.4.dmg - name: Calculate Checksums for ZIP - run: shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.3.zip + run: shasum -a 256 build/target/ark-desktop-wallet-mac-2.9.4.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.3.dmg' | jq -r .permalink + 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 - 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.3.zip' | jq -r .permalink + 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 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.3.exe -Algorithm SHA256 | Format-List + run: Get-FileHash build/target/ark-desktop-wallet-win-2.9.4.exe -Algorithm SHA256 | Format-List shell: powershell diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a238e66141..63b50a4392 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.3.AppImage - # path: build/target/ark-desktop-wallet-linux-x86_64-2.9.3.AppImage + # name: ark-desktop-wallet-linux-2.9.4.AppImage + # path: build/target/ark-desktop-wallet-linux-x86_64-2.9.4.AppImage # - name: Upload .tar.gz # uses: actions/upload-artifact@master # with: - # name: ark-desktop-wallet-linux-2.9.3.tar.gz - # path: build/target/ark-desktop-wallet-linux-x64-2.9.3.tar.gz + # name: ark-desktop-wallet-linux-2.9.4.tar.gz + # path: build/target/ark-desktop-wallet-linux-x64-2.9.4.tar.gz - name: Upload .deb uses: actions/upload-artifact@master with: - name: ark-desktop-wallet-linux-2.9.3-${{ github.sha }}.deb - path: build/target/ark-desktop-wallet-linux-amd64-2.9.3.deb + name: ark-desktop-wallet-linux-2.9.4-${{ github.sha }}.deb + path: build/target/ark-desktop-wallet-linux-amd64-2.9.4.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.3.zip - # path: build/target/ark-desktop-wallet-mac-2.9.3.zip + # name: ark-desktop-wallet-mac-2.9.4.zip + # path: build/target/ark-desktop-wallet-mac-2.9.4.zip - name: Upload .dmg uses: actions/upload-artifact@v1 with: - name: ark-desktop-wallet-mac-2.9.3-${{ github.sha }}.dmg - path: build/target/ark-desktop-wallet-mac-2.9.3.dmg + name: ark-desktop-wallet-mac-2.9.4-${{ github.sha }}.dmg + path: build/target/ark-desktop-wallet-mac-2.9.4.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.3-${{ github.sha }}.exe - path: build/target/ark-desktop-wallet-win-2.9.3.exe + name: ark-desktop-wallet-win-2.9.4-${{ github.sha }}.exe + path: build/target/ark-desktop-wallet-win-2.9.4.exe diff --git a/package.json b/package.json index a65c4ed3a1..501f1e7929 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "ark-desktop-wallet", - "version": "2.9.3", + "version": "2.9.4", "repository": { "type": "git", "url": "git+https://github.com/ArkEcosystem/desktop-wallet.git"