Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/aws-upload-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ jobs:
- name: Init variables
run: |
latestYmlFileName="latest.yml"
downloadLatestFolderPath="public/latest"
upgradeLatestFolderPath="public/upgrades"
downloadLatestFolderPath="public/latest-v3"
upgradeLatestFolderPath="public/upgrades-v3"
releasesFolderPath="public/releases"
appName=$(jq -r '.productName' electron-builder.json)
appVersion=$(jq -r '.version' redisinsight/package.json)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,6 @@ jobs:
RI_SERVER_TLS_CERT: ${{ secrets.RI_SERVER_TLS_CERT }}
RI_SERVER_TLS_KEY: ${{ secrets.RI_SERVER_TLS_KEY }}
RI_FEATURES_CONFIG_URL: ${{ secrets.RI_FEATURES_CONFIG_URL }}
RI_UPGRADES_LINK: ${{ secrets.RI_UPGRADES_LINK }}
RI_UPGRADES_LINK: ${{ secrets.RI_UPGRADES_LINK_NEW }}
RI_FEATURES_CLOUD_ADS_DEFAULT_FLAG: ${{ inputs.enterprise == false }}
RI_DISABLE_AUTO_UPGRADE: ${{ inputs.enterprise }}
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
RI_SERVER_TLS_CERT: ${{ secrets.RI_SERVER_TLS_CERT }}
RI_SERVER_TLS_KEY: ${{ secrets.RI_SERVER_TLS_KEY }}
RI_FEATURES_CONFIG_URL: ${{ secrets.RI_FEATURES_CONFIG_URL }}
RI_UPGRADES_LINK: ${{ secrets.RI_UPGRADES_LINK }}
RI_UPGRADES_LINK: ${{ secrets.RI_UPGRADES_LINK_NEW }}
RI_FEATURES_CLOUD_ADS_DEFAULT_FLAG: ${{ inputs.enterprise == false }}
RI_DISABLE_AUTO_UPGRADE: ${{ inputs.enterprise }}
RI_APP_TYPE: ${{ inputs.enterprise && 'ELECTRON_ENTERPRISE' || 'ELECTRON' }}
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
RI_SERVER_TLS_CERT: ${{ secrets.RI_SERVER_TLS_CERT }}
RI_SERVER_TLS_KEY: ${{ secrets.RI_SERVER_TLS_KEY }}
RI_FEATURES_CONFIG_URL: ${{ secrets.RI_FEATURES_CONFIG_URL }}
RI_UPGRADES_LINK: ${{ secrets.RI_UPGRADES_LINK }}
RI_UPGRADES_LINK: ${{ secrets.RI_UPGRADES_LINK_NEW }}
RI_FEATURES_CLOUD_ADS_DEFAULT_FLAG: ${{ inputs.enterprise == false }}
RI_DISABLE_AUTO_UPGRADE: ${{ inputs.enterprise }}
RI_APP_TYPE: ${{ inputs.enterprise && 'ELECTRON_ENTERPRISE' || 'ELECTRON' }}
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
RI_SERVER_TLS_CERT: ${{ secrets.RI_SERVER_TLS_CERT }}
RI_SERVER_TLS_KEY: ${{ secrets.RI_SERVER_TLS_KEY }}
RI_FEATURES_CONFIG_URL: ${{ secrets.RI_FEATURES_CONFIG_URL }}
RI_UPGRADES_LINK: ${{ secrets.RI_UPGRADES_LINK }}
RI_UPGRADES_LINK: ${{ secrets.RI_UPGRADES_LINK_NEW }}
RI_FEATURES_CLOUD_ADS_DEFAULT_FLAG: ${{ inputs.enterprise == false }}
RI_DISABLE_AUTO_UPGRADE: ${{ inputs.enterprise }}
RI_APP_TYPE: ${{ inputs.enterprise && 'ELECTRON_ENTERPRISE' || 'ELECTRON' }}
11 changes: 6 additions & 5 deletions .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,12 @@ jobs:
needs: virustotal-prod
secrets: inherit

publish-stores:
name: Publish to stores
uses: ./.github/workflows/publish-stores.yml
needs: aws-upload-prod
secrets: inherit
# Temporal disable publish to docker and snapcraft
# publish-stores:
# name: Publish to stores
# uses: ./.github/workflows/publish-stores.yml
# needs: aws-upload-prod
# secrets: inherit

# Remove artifacts from github actions
remove-artifacts:
Expand Down
Loading