mirror of
https://github.com/zen-browser/desktop.git
synced 2026-04-20 06:21:00 +00:00
Update rust version and fix installation script in linux-release-build.yml
This commit is contained in:
4
.github/workflows/linux-release-build.yml
vendored
4
.github/workflows/linux-release-build.yml
vendored
@@ -98,8 +98,8 @@ jobs:
|
||||
|
||||
- name: Fix rust version
|
||||
run: |
|
||||
# Install a rust version compatible with LLVM 19
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||
# Install a rust version compatible with LLVM 18
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.79
|
||||
source $HOME/.cargo/env
|
||||
|
||||
- name: Import
|
||||
|
||||
4
.github/workflows/windows-profile-build.yml
vendored
4
.github/workflows/windows-profile-build.yml
vendored
@@ -63,6 +63,10 @@ jobs:
|
||||
run: |
|
||||
git config --global core.safecrlf false
|
||||
pnpm surfer download
|
||||
|
||||
- name: Import patches
|
||||
run: pnpm surfer import
|
||||
|
||||
- name: Generate
|
||||
run: |
|
||||
ls
|
||||
|
||||
@@ -200,11 +200,11 @@
|
||||
top: 0;
|
||||
left: 0;
|
||||
pointer-events: none;
|
||||
margin: 10px;
|
||||
margin: var(--panel-padding);
|
||||
box-shadow: 0 0 0 1px 1px var(--zen-colors-border);
|
||||
width: calc(100% - 20px);
|
||||
height: calc(100% - 20px);
|
||||
border-radius: calc(var(--zen-border-radius) + 5px);
|
||||
width: calc(100% - var(--panel-padding) * 2);
|
||||
height: calc(100% - var(--panel-padding) * 2);
|
||||
border-radius: var(--zen-border-radius);
|
||||
}
|
||||
|
||||
&::after {
|
||||
@@ -218,9 +218,9 @@
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
margin: 10px;
|
||||
width: calc(100% - 20px);
|
||||
height: calc(100% - 20px);
|
||||
margin: var(--panel-padding);
|
||||
width: calc(100% - var(--panel-padding) * 2);
|
||||
height: calc(100% - var(--panel-padding) * 2);
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user