-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c0137e
commit 3f70e2d
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,8 @@ on: | |
tags: | ||
- "v*" | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
jobs: | ||
build-macos: | ||
runs-on: macos-latest | ||
|
@@ -95,8 +96,9 @@ jobs: | |
env: | ||
GH_TOKEN: ${{ secrets.PAT }} | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "github-actions[bot]@users.noreply.github.com" | ||
git remote set-url origin https://x-access-token:${GH_TOKEN}@github.com/${GITHUB_REPOSITORY}.git | ||
git add Formula/screenpipe.rb | ||
git commit -m "chore: update brew to version ${{ env.VERSION }} for ${{ matrix.target }}" | ||
git push | ||
|