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 fe1f1fe commit 67c974fCopy full SHA for 67c974f
.github/workflows/release-unstable.yml
@@ -38,11 +38,12 @@ jobs:
38
39
- name: Commit and Push to pkg branch
40
run: |
41
- git config --global user.name 'github-actions[bot]'
42
- git config --global user.email 'github-actions[bot]@users.noreply.github.com'
+ git config user.name 'github-actions[bot]'
+ git config user.email 'github-actions[bot]@users.noreply.github.com'
43
git fetch origin pkg || git checkout -b pkg
44
git checkout pkg
45
- git merge --no-ff --no-edit -s recursive -X theirs master
+ git merge --no-edit --squash -s recursive -X theirs master
46
+ git rm -rf --cached .
47
git add .
48
if ! git diff --staged --quiet; then
49
git commit -m "build: ${{ github.sha }}"
0 commit comments