mirror of
https://github.com/zen-browser/desktop.git
synced 2026-06-01 09:31:14 +00:00
no-bug: Individually download each artifact on release (gh-13199)
This commit is contained in:
33
.github/workflows/build.yml
vendored
33
.github/workflows/build.yml
vendored
@@ -490,8 +490,35 @@ jobs:
|
||||
submodules: recursive
|
||||
token: ${{ secrets.DEPLOY_KEY }}
|
||||
|
||||
- name: Download artifact
|
||||
- name: Download artifact (source)
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: zen.source.tar.zst
|
||||
|
||||
- name: Download artifact (MAR files)
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: "*.mar"
|
||||
|
||||
- name: Download artifact (Linux tars)
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: "zen.linux-*.tar.xz"
|
||||
|
||||
- name: Download artifact (Linux AppImage)
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: "zen-*.AppImage*"
|
||||
|
||||
- name: Download artifact (macOS universal DMG)
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: zen.macos-universal.dmg
|
||||
|
||||
- name: Download artifact (Windows installers)
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: "zen.installer*.exe"
|
||||
|
||||
- name: Checkout updates repository
|
||||
uses: actions/checkout@v4
|
||||
@@ -565,8 +592,6 @@ jobs:
|
||||
./zen-x86_64.AppImage.zsync/*
|
||||
./zen-aarch64.AppImage/*
|
||||
./zen-aarch64.AppImage.zsync/*
|
||||
./zen.win-x86_64.zip/*
|
||||
./zen.win-arm64.zip/*
|
||||
./linux.mar/*
|
||||
./linux-aarch64.mar/*
|
||||
./windows.mar/*
|
||||
@@ -604,8 +629,6 @@ jobs:
|
||||
./zen-x86_64.AppImage.zsync/*
|
||||
./zen-aarch64.AppImage/*
|
||||
./zen-aarch64.AppImage.zsync/*
|
||||
./.github/workflows/object/windows-x64-signed-x86_64/zen.win-x86_64.zip
|
||||
./.github/workflows/object/windows-x64-signed-arm64/zen.win-arm64.zip
|
||||
./linux.mar/*
|
||||
./linux-aarch64.mar/*
|
||||
./.github/workflows/object/windows-x64-signed-x86_64/windows.mar
|
||||
|
||||
11
package-lock.json
generated
11
package-lock.json
generated
@@ -4177,16 +4177,19 @@
|
||||
"peer": true
|
||||
},
|
||||
"node_modules/yaml": {
|
||||
"version": "2.7.0",
|
||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz",
|
||||
"integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
|
||||
"version": "2.8.3",
|
||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.3.tgz",
|
||||
"integrity": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==",
|
||||
"dev": true,
|
||||
"license": "ISC",
|
||||
"bin": {
|
||||
"yaml": "bin.mjs"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 14"
|
||||
"node": ">= 14.6"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/eemeli"
|
||||
}
|
||||
},
|
||||
"node_modules/zip": {
|
||||
|
||||
@@ -111,6 +111,8 @@ sign_mars() {
|
||||
exit 1
|
||||
fi
|
||||
|
||||
chmod +x "$SIGNMAR"
|
||||
|
||||
create_nss_config_dir
|
||||
|
||||
folders=(
|
||||
|
||||
Reference in New Issue
Block a user