Skip to content

Commit d84785a

Browse files
committed
Patch: excluded dependencies from published package
1 parent 1ec1826 commit d84785a

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/prerelease.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ jobs:
3030
token: ${{ secrets.REPOSITORY_ACCESS_TOKEN }}
3131

3232
- name: Build 🏗️
33-
uses: sliit-foss/actions/bun/build@main
33+
uses: sliit-foss/actions/bun/build@v1.1
3434

3535
- name: Release 🚀
36-
uses: sliit-foss/actions/bun/publish@main
36+
uses: sliit-foss/actions/bun/[email protected]
37+
with:
38+
scrub_dependencies: true
3739
env:
3840
TAG: ${{ inputs.tag || 'blizzard' }}
3941
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}

.github/workflows/quality-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- name: Run commitlint 🟩
23-
uses: sliit-foss/actions/quality-checks/commitlint@main
23+
uses: sliit-foss/actions/quality-checks/commitlint@v1.1
2424

2525
lint:
2626
name: Enforce ESLint rules
@@ -30,6 +30,6 @@ jobs:
3030
uses: actions/checkout@v4
3131

3232
- name: Run linter 📢
33-
uses: sliit-foss/actions/quality-checks/linter@main
33+
uses: sliit-foss/actions/quality-checks/linter@v1.1
3434
with:
3535
package-manager: 'bun'

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@ jobs:
2222
token: ${{ secrets.REPOSITORY_ACCESS_TOKEN }}
2323

2424
- name: Build 🏗️
25-
uses: sliit-foss/actions/bun/build@main
25+
uses: sliit-foss/actions/bun/build@v1.1
2626

2727
- name: Release 🚀
28-
uses: sliit-foss/actions/bun/publish@main
28+
uses: sliit-foss/actions/bun/publish@v1.1
2929
with:
3030
latest: true
31+
scrub_dependencies: true
3132
env:
3233
TAG: latest
3334
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)