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 8c2eaaf commit fc98bfbCopy full SHA for fc98bfb
.github/workflows/build.yml
@@ -52,7 +52,7 @@ jobs:
52
- name: Ensure clean release branch from main
53
run: |
54
# Remove all tracked and untracked files except .git and .github
55
- find . -mindepth 1 -maxdepth 1 ! -name '.git' ! -name '.github' -exec rm -rf {} +
+ find . -mindepth 1 -maxdepth 1 ! -name '.git' ! -name '.github' ! -name 'CHANGELOG.txt' -exec rm -rf {} +
56
57
# Copy files from main branch
58
git checkout main -- .
@@ -64,7 +64,7 @@ jobs:
64
65
- name: Check in files
66
67
- git add -f build/ Sources/
+ git add -f . ':!CHANGELOG.txt' ':!node_modules'
68
69
- name: Commit build files
70
uses: stefanzweifel/git-auto-commit-action@v5
0 commit comments