Skip to content

Commit

Permalink
fix(workflow): auto merge and windows tries
Browse files Browse the repository at this point in the history
  • Loading branch information
camarm-dev committed Jul 5, 2024
1 parent 98ad5f0 commit c0442d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Configure Windows git.exe
if: matrix.platform == 'windows-latest'
working-directory: app
run: git config core.protectNTFS false

- uses: actions/checkout@v4
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: |
Expand Down Expand Up @@ -104,8 +104,8 @@ jobs:

- name: Commit binaries
run: |
git config pull.rebase true
git add builds/*
git commit -m "chore(binaries): added latest Remède binaries"
git pull
git fetch
git push

0 comments on commit c0442d4

Please sign in to comment.