ci(release): remove unnecessary full clone

This commit is contained in:
dundargoc 2023-09-09 13:31:47 +02:00 committed by dundargoc
parent c422722b2e
commit 5acd850117

View File

@ -23,8 +23,6 @@ jobs:
version: ${{ steps.build.outputs.version }} version: ${{ steps.build.outputs.version }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
fetch-depth: 0
- run: ./.github/scripts/install_deps.sh - run: ./.github/scripts/install_deps.sh
- if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly') - if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly')
run: | run: |
@ -62,8 +60,6 @@ jobs:
runs-on: macos-11 runs-on: macos-11
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies - name: Install dependencies
run: ./.github/scripts/install_deps.sh run: ./.github/scripts/install_deps.sh
- if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly') - if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly')
@ -83,8 +79,6 @@ jobs:
name: windows (MSVC_64) name: windows (MSVC_64)
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
fetch-depth: 0
- run: .github/scripts/env.ps1 - run: .github/scripts/env.ps1
- name: Build deps - name: Build deps
run: | run: |