diff --git a/.github/workflows/dev-daily-fixed.yml b/.github/workflows/dev-daily-fixed.yml index 15f5450..bf65d95 100644 --- a/.github/workflows/dev-daily-fixed.yml +++ b/.github/workflows/dev-daily-fixed.yml @@ -287,6 +287,12 @@ jobs: if: always() && needs.prepare.result == 'success' runs-on: ubuntu-latest steps: + - name: Check out git repository + uses: actions/checkout@v5 + with: + ref: ${{ env.TARGET_BRANCH }} + fetch-depth: 1 + - name: Update fixed dev release notes env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/preview-nightly-main.yml b/.github/workflows/preview-nightly-main.yml index 08b8556..01f7ddb 100644 --- a/.github/workflows/preview-nightly-main.yml +++ b/.github/workflows/preview-nightly-main.yml @@ -328,6 +328,12 @@ jobs: if: needs.prepare.outputs.should_build == 'true' && always() runs-on: ubuntu-latest steps: + - name: Check out git repository + uses: actions/checkout@v5 + with: + ref: ${{ env.TARGET_BRANCH }} + fetch-depth: 1 + - name: Update preview release notes env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3a61471..fe14ef8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -252,6 +252,11 @@ jobs: - release-windows-arm64 steps: + - name: Check out git repository + uses: actions/checkout@v5 + with: + fetch-depth: 1 + - name: Generate release notes with platform download links env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}