Skip to content
This repository has been archived by the owner on Nov 6, 2021. It is now read-only.

Commit

Permalink
Release v32
Browse files Browse the repository at this point in the history
  • Loading branch information
kevalpithadiya committed Feb 20, 2021
1 parent 268f50f commit 712a38f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ SECRETS.GITHUB_TOKEN }}
with:
tag_name: v31
release_name: Release v31
tag_name: v32
release_name: Release v32

linux-build:
needs: create_release
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Compressing Build
run: |
cd release-builds
zip -r linux-v31.zip Zeno-linux-x64
zip -r linux-v32.zip Zeno-linux-x64
- name: Uploading ZIP
id: upload_zip
Expand All @@ -61,8 +61,8 @@ jobs:
GITHUB_TOKEN: ${{ SECRETS.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_path: ./release-builds/linux-v31.zip
asset_name: linux-v31.zip
asset_path: ./release-builds/linux-v32.zip
asset_name: linux-v32.zip
asset_content_type: application/zip

windows-build:
Expand All @@ -89,7 +89,7 @@ jobs:
id: compressing-build
run: |
cd release-builds
Compress-Archive -Path ./Zeno-win32-x64 -DestinationPath ./win32-v31.zip
Compress-Archive -Path ./Zeno-win32-x64 -DestinationPath ./win32-v32.zip
# Uploading a Release file
- name: Uploading ZIP
Expand All @@ -99,8 +99,8 @@ jobs:
GITHUB_TOKEN: ${{ SECRETS.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_path: ./release-builds/win32-v31.zip
asset_name: win32-v31.zip
asset_path: ./release-builds/win32-v32.zip
asset_name: win32-v32.zip
asset_content_type: application/zip

macos-build:
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
id: compressing-build
run: |
cd release-builds
zip -r darwin-v31.zip zeno-darwin-x64
zip -r darwin-v32.zip zeno-darwin-x64
# Uploading a Release file
Expand All @@ -139,6 +139,6 @@ jobs:
GITHUB_TOKEN: ${{ SECRETS.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_path: ./release-builds/darwin-v31.zip
asset_name: darwin-v31.zip
asset_path: ./release-builds/darwin-v32.zip
asset_name: darwin-v32.zip
asset_content_type: application/zip
2 changes: 1 addition & 1 deletion splash.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const https = require('https');
const fs = require('fs');
const pluginUpdater = require("./featureModules/plugins/updater");

const version = 31;
const version = 32;
var downloadBtn, cancelBtn, status;
let tips = [
"You can press F5 to restart the client",
Expand Down

0 comments on commit 712a38f

Please sign in to comment.