We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97515b6 commit 3734966Copy full SHA for 3734966
.github/workflows/release.yml
@@ -44,12 +44,17 @@ jobs:
44
env:
45
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46
47
+ - name: Prepare Distribution Bundle
48
+ run: |
49
+ mkdir dist-bundle
50
+ cp core-carousel.zip dist-bundle/
51
+
52
- name: Deploy to Dist Branch
53
uses: s0/git-publish-subdir-action@develop
54
55
REPO: self
56
BRANCH: dist
- FOLDER: .
57
+ FOLDER: dist-bundle
58
59
MESSAGE: "chore: distribution build v${{ steps.get_version.outputs.VERSION }}"
- SKIP_EMPTY_COMMITS: true
60
+ SKIP_EMPTY_COMMITS: true
0 commit comments