Skip to content

Commit

Permalink
build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Avi-Robusta committed May 29, 2024
1 parent cf366e6 commit 82da608
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
if: matrix.os == 'macos-latest'
shell: bash
run: |
pyinstaller --target-architecture universal2 krr.py
pyinstaller --target-architecture arm64 krr.py
mkdir -p ./dist/krr/grapheme/data
cp $(python -c "import grapheme; print(grapheme.__path__[0] + '/data/grapheme_break_property.json')") ./dist/krr/grapheme/data/grapheme_break_property.json
cp ./intro.txt ./dist/krr/intro.txt
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/update-code-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
- name: Extract version from tag
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV

- name: Fetch all branches
run: git fetch --all

- name: Set up the remote repository
run: git remote add origin https://github.com/${{ github.repository }}.git

- name: Select main branch
run: git checkout origin/main

Expand Down

0 comments on commit 82da608

Please sign in to comment.