Skip to content

Commit

Permalink
increase max line length to 120
Browse files Browse the repository at this point in the history
  • Loading branch information
cbusillo committed Jun 10, 2024
1 parent d9822af commit 83ceeee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/briefcase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ jobs:
run: |
poetry run briefcase create
poetry run briefcase build
find . -name QtWebEngineCore -type f | while read file; do
codesign --force --verify --verbose --sign "${{ secrets.DEV_ID }}" "$file"
done
find . -name QtWebEngineCore.framework -type d | while read dir; do
find "$dir" -type f -execdir codesign --force --verify --verbose --sign "${{ secrets.DEV_ID }}" {} \;
done
poetry run briefcase package -i "${{ secrets.DEV_ID }}"
- name: Get commit messages
id: get_commit_messages
Expand Down

0 comments on commit 83ceeee

Please sign in to comment.