diff options
author | Ben V. Brown <[email protected]> | 2022-04-19 09:24:40 +1000 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-19 09:24:40 +1000 |
commit | 70565de2e528d9c0ef2e1a5e1045d22ae6304693 (patch) | |
tree | d011b7fd76178379fae6c3636d9e1bab4fd9356d | |
parent | 1b562c646697cd9ab4d59ffa955db5caac0ccd1d (diff) | |
download | IronOS-70565de2e528d9c0ef2e1a5e1045d22ae6304693.tar.gz IronOS-70565de2e528d9c0ef2e1a5e1045d22ae6304693.zip |
Update push for git permissionsv2.18.2
https://github.com/actions/checkout/issues/760
-rw-r--r-- | .github/workflows/push.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 7aa18e65..9c1eb85b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -22,6 +22,9 @@ jobs: - uses: actions/checkout@v3 with: submodules: true + + - name: Git ownership exception + run: git config --global --add safe.directory /__w/IronOS/IronOS && git config --global safe.directory "$GITHUB_WORKSPACE" - name: build ${{ matrix.model }} run: cd source && ./build.sh -m ${{ matrix.model }} @@ -69,7 +72,10 @@ jobs: - uses: actions/checkout@v3 with: submodules: true - + + - name: Git ownership exception + run: git config --global --add safe.directory /__w/IronOS/IronOS && git config --global safe.directory "$GITHUB_WORKSPACE" + - name: build ${{ matrix.model }} run: cd source && make -j$(nproc) model="${{ matrix.model }}" firmware-multi_compressed_European firmware-multi_compressed_Bulgarian+Russian+Serbian+Ukrainian firmware-multi_Chinese+Japanese |