forked from ZenBrowserMirrors/zen-desktop
Fix default value formatting in workflow YAML files and clean up whitespace in update_ff.py
This commit is contained in:
parent
8d8c9e8a01
commit
93ab8babbc
5 changed files with 8 additions and 7 deletions
2
.github/workflows/linux-release-build.yml
vendored
2
.github/workflows/linux-release-build.yml
vendored
|
@ -14,7 +14,7 @@ on:
|
||||||
MOZ_BUILD_DATE:
|
MOZ_BUILD_DATE:
|
||||||
type: string
|
type: string
|
||||||
required: true
|
required: true
|
||||||
default: ""
|
default: ''
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-linux:
|
build-linux:
|
||||||
|
|
2
.github/workflows/macos-release-build.yml
vendored
2
.github/workflows/macos-release-build.yml
vendored
|
@ -14,7 +14,7 @@ on:
|
||||||
MOZ_BUILD_DATE:
|
MOZ_BUILD_DATE:
|
||||||
type: string
|
type: string
|
||||||
required: true
|
required: true
|
||||||
default: ""
|
default: ''
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
mac-build:
|
mac-build:
|
||||||
|
|
|
@ -102,9 +102,9 @@ jobs:
|
||||||
env:
|
env:
|
||||||
SURFER_MOZCONFIG_ONLY: true
|
SURFER_MOZCONFIG_ONLY: true
|
||||||
run: |
|
run: |
|
||||||
pnpm build
|
pnpm build
|
||||||
cd engine
|
cd engine
|
||||||
./mach configure
|
./mach configure
|
||||||
|
|
||||||
- name: Download x86_64 DMG from artifacts
|
- name: Download x86_64 DMG from artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
@ -187,7 +187,6 @@ jobs:
|
||||||
echo "Copying provisioning profile for .app on both architectures (${{ env.APP_NAME }})"
|
echo "Copying provisioning profile for .app on both architectures (${{ env.APP_NAME }})"
|
||||||
cp ./Zen_Browser.provisionprofile "./embedded.provisionprofile"
|
cp ./Zen_Browser.provisionprofile "./embedded.provisionprofile"
|
||||||
|
|
||||||
|
|
||||||
- name: Sign .app
|
- name: Sign .app
|
||||||
run: |
|
run: |
|
||||||
cd engine
|
cd engine
|
||||||
|
|
2
.github/workflows/windows-release-build.yml
vendored
2
.github/workflows/windows-release-build.yml
vendored
|
@ -21,7 +21,7 @@ on:
|
||||||
MOZ_BUILD_DATE:
|
MOZ_BUILD_DATE:
|
||||||
type: string
|
type: string
|
||||||
required: true
|
required: true
|
||||||
default: ""
|
default: ''
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
windows-build:
|
windows-build:
|
||||||
|
|
|
@ -56,6 +56,7 @@ def update_readme(last_version, new_version, is_rc=False):
|
||||||
except FileNotFoundError as e:
|
except FileNotFoundError as e:
|
||||||
raise RuntimeError(f"README.md file not found: {e}")
|
raise RuntimeError(f"README.md file not found: {e}")
|
||||||
|
|
||||||
|
|
||||||
def update_l10n_last_commit_hash():
|
def update_l10n_last_commit_hash():
|
||||||
L10N_REPO = "https://github.com/mozilla-l10n/firefox-l10n"
|
L10N_REPO = "https://github.com/mozilla-l10n/firefox-l10n"
|
||||||
try:
|
try:
|
||||||
|
@ -68,6 +69,7 @@ def update_l10n_last_commit_hash():
|
||||||
print("Exiting...")
|
print("Exiting...")
|
||||||
shutil.rmtree("l10n-temp")
|
shutil.rmtree("l10n-temp")
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
"""Main function to update versions and README."""
|
"""Main function to update versions and README."""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue