We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fbd4de commit b85335fCopy full SHA for b85335f
.github/workflows/release.yml
@@ -38,6 +38,7 @@ jobs:
38
uses: actions/checkout@v3
39
with:
40
token: ${{ secrets.GH_MERGE_TOKEN }}
41
+ fetch-depth: 0
42
43
- name: Clear Git config cache
44
run: |
@@ -76,8 +77,8 @@ jobs:
76
77
78
- name: Force Checkout dist and Overwrite
79
- git fetch origin main # Ensure we have the latest main
80
- git checkout -B dist origin/main # Force checkout of dist, overwriting with main
+ git fetch origin main
81
+ git checkout -B dist origin/main
82
git add dist
83
git commit -m "Update dist folder"
84
git push --force origin dist
0 commit comments