We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2528eb4 commit d62dbe5Copy full SHA for d62dbe5
.github/workflows/release.yml
@@ -125,7 +125,7 @@ jobs:
125
with:
126
repository: manucodin/homebrew-swift-mock-generator
127
path: homebrew-tap
128
- token: ${{ secrets.GITHUB_TOKEN }}
+ fetch-depth: 0
129
130
- name: Update Homebrew formula
131
run: |
@@ -157,6 +157,9 @@ jobs:
157
git config user.name "github-actions[bot]"
158
git config user.email "github-actions[bot]@users.noreply.github.com"
159
160
+ # Configure git to use the token for authentication
161
+ git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/manucodin/homebrew-swift-mock-generator.git
162
+
163
# Check if there are changes
164
if git diff --quiet; then
165
echo "No changes to commit"
0 commit comments