PR: added a step to unshallow the clone

This commit is contained in:
XargonWan 2024-11-08 09:35:46 +09:00
parent 11fd9b62fd
commit 9280f5a116

View file

@ -15,6 +15,16 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0 # Retrieve full history to allow merging fetch-depth: 0 # Retrieve full history to allow merging
- name: Configure the upstream
run: |
CURRENT_BRANCH="${{ github.ref_name }}"
git remote add upstream "https://github.com/flathub/${{ github.event.repository.name }}"
git fetch upstream
git fetch origin
git branch --set-upstream-to=upstream/$CURRENT_BRANCH $CURRENT_BRANCH
- name: Generate a token for Rekku - name: Generate a token for Rekku
if: ${{ github.repository == 'RetroDECK/RetroDECK' }} if: ${{ github.repository == 'RetroDECK/RetroDECK' }}
id: generate-rekku-token id: generate-rekku-token