Skip to content

Commit 602cb44

Browse files
committed
fix: cicd
1 parent 3d2b214 commit 602cb44

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
with:
1515
bun-version: latest
1616
- run: bun install --frozen-lockfile
17+
- run: bun run lint
18+
- run: bun run typecheck
19+
- run: bun run build
1720
- run: bun run test
1821
- run: bun run test:integration
1922
env:
2023
CERTMAN_API_KEY: ${{ secrets.CERTMAN_API_KEY }}
21-
- run: bun run lint
22-
- run: bun run typecheck
23-
- run: bun run build

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828

2929
- name: Run tests
3030
run: bun run test
31+
- name: Build TypeScript
32+
run: bun run build
3133
- name: Run integration tests
3234
run: bun run test:integration
3335
env:
@@ -73,7 +75,7 @@ jobs:
7375
run: bun build dist/index.js --compile --target=bun-${{ matrix.target }} --outfile=${{ matrix.artifact }}
7476

7577
- name: Upload artifact
76-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v6
7779
with:
7880
name: ${{ matrix.artifact }}
7981
path: ${{ matrix.artifact }}
@@ -101,7 +103,7 @@ jobs:
101103
./scripts/build-deb.sh "$VERSION" "${{ matrix.arch }}"
102104
103105
- name: Upload artifact
104-
uses: actions/upload-artifact@v4
106+
uses: actions/upload-artifact@v6
105107
with:
106108
name: certman-${{ matrix.arch }}.deb
107109
path: deb/*.deb

0 commit comments

Comments
 (0)