Skip to content

Commit

Permalink
ci: 👷 Let versioning build format all files
Browse files Browse the repository at this point in the history
  • Loading branch information
aMediocreDad committed Jun 8, 2024
1 parent 24bba27 commit fcb989f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: canary
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Build
run: bun run build
- name: Create Release or Version
uses: changesets/action@b680876f4c3074a212030f31fe29377b03c94a71
uses: changesets/action@cdfd21f8180220750990b6a7924b2a990b40c87f
with:
commit: 'chore(release): Version Package'
title: 'Version Package'
Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@arkweid/lefthook": "0.7.7",
"@biomejs/biome": "1.8.0",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.5",
"@changesets/cli": "2.27.1",
"@types/jquery": "3.5.30",
"@types/node": "20.14.2",
"@playwright/test": "^1.44.1",
Expand Down
2 changes: 1 addition & 1 deletion tools/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ manifest.download = manifest.download.replace(/v\d+\.\d+\.\d+/, `v${version}`);
await writeFile("system.json", `${JSON.stringify(manifest, null, "\t")}\n`);

// Format system.json
await $`bunx biome format --write system.json`.then(handlePossibleError);
await $`bunx biome format --write .`.then(handlePossibleError);

0 comments on commit fcb989f

Please sign in to comment.