Skip to content

fix safari background (https://github.com/josStorer/chatGPTBox/issues… #56

fix safari background (https://github.com/josStorer/chatGPTBox/issues…

fix safari background (https://github.com/josStorer/chatGPTBox/issues… #56

Workflow file for this run

name: tagged-release
on:
push:
tags:
- "v*"
permissions:
id-token: "write"
contents: "write"
jobs:
build_and_release:
runs-on: macos-12
steps:
- run: echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV
- uses: actions/checkout@v4
with:
ref: master
- name: Update manifest.json version
uses: jossef/[email protected]
with:
file: src/manifest.json
field: version
value: ${{ env.VERSION }}
- name: Update manifest.v2.json version
uses: jossef/[email protected]
with:
file: src/manifest.v2.json
field: version
value: ${{ env.VERSION }}
- name: Push files
continue-on-error: true
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git commit -am "release v${{ env.VERSION }}"
git push
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 14.2
- run: sed -i '' "s/0.0.0/${{ env.VERSION }}/g" safari/project.pre.patch
- run: sed -i '' "s/0.0.0/${{ env.VERSION }}/g" safari/project.patch
- run: npm run build:safari
- uses: marvinpinto/[email protected]
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
build/chromium.zip
build/firefox.zip
build/safari.dmg
build/chromium-without-katex-and-tiktoken.zip
build/firefox-without-katex-and-tiktoken.zip