Skip to content

Commit 3734966

Browse files
committed
fix: unignore dist
1 parent 97515b6 commit 3734966

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,17 @@ jobs:
4444
env:
4545
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4646

47+
- name: Prepare Distribution Bundle
48+
run: |
49+
mkdir dist-bundle
50+
cp core-carousel.zip dist-bundle/
51+
4752
- name: Deploy to Dist Branch
4853
uses: s0/git-publish-subdir-action@develop
4954
env:
5055
REPO: self
5156
BRANCH: dist
52-
FOLDER: .
57+
FOLDER: dist-bundle
5358
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5459
MESSAGE: "chore: distribution build v${{ steps.get_version.outputs.VERSION }}"
55-
SKIP_EMPTY_COMMITS: true
60+
SKIP_EMPTY_COMMITS: true

0 commit comments

Comments
 (0)