We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5df6e5d commit 7be6658Copy full SHA for 7be6658
.github/workflows/release-unstable.yml
@@ -41,8 +41,10 @@ jobs:
41
git config user.name 'github-actions[bot]'
42
git config user.email 'github-actions[bot]@users.noreply.github.com'
43
git fetch origin pkg || git checkout -b pkg
44
+ cp -r dist node_modules/dist
45
git checkout pkg
46
git checkout master -- LICENSE README.md package.json
47
+ rm -rf dist && cp -r node_modules/dist ./
48
pnpm version "$(pnpm pkg get version | tr -d '"')-$(echo ${{ github.sha }} | cut -c1-7)" --no-git-tag-version
49
git add .
50
if ! git diff --staged --quiet; then
0 commit comments