1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-07 17:15:30 +02:00

Fix default value formatting in workflow YAML files and clean up whitespace in update_ff.py

This commit is contained in:
mr. M 2025-01-30 00:39:11 +01:00
parent 8d8c9e8a01
commit 93ab8babbc
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
5 changed files with 8 additions and 7 deletions

View file

@ -14,7 +14,7 @@ on:
MOZ_BUILD_DATE:
type: string
required: true
default: ""
default: ''
jobs:
build-linux:

View file

@ -14,7 +14,7 @@ on:
MOZ_BUILD_DATE:
type: string
required: true
default: ""
default: ''
jobs:
mac-build:

View file

@ -102,9 +102,9 @@ jobs:
env:
SURFER_MOZCONFIG_ONLY: true
run: |
pnpm build
cd engine
./mach configure
pnpm build
cd engine
./mach configure
- name: Download x86_64 DMG from artifacts
uses: actions/download-artifact@v4
@ -187,7 +187,6 @@ jobs:
echo "Copying provisioning profile for .app on both architectures (${{ env.APP_NAME }})"
cp ./Zen_Browser.provisionprofile "./embedded.provisionprofile"
- name: Sign .app
run: |
cd engine

View file

@ -21,7 +21,7 @@ on:
MOZ_BUILD_DATE:
type: string
required: true
default: ""
default: ''
jobs:
windows-build:

View file

@ -56,6 +56,7 @@ def update_readme(last_version, new_version, is_rc=False):
except FileNotFoundError as e:
raise RuntimeError(f"README.md file not found: {e}")
def update_l10n_last_commit_hash():
L10N_REPO = "https://github.com/mozilla-l10n/firefox-l10n"
try:
@ -68,6 +69,7 @@ def update_l10n_last_commit_hash():
print("Exiting...")
shutil.rmtree("l10n-temp")
def main():
"""Main function to update versions and README."""