Skip to content

Commit

Permalink
fix(scripts): version bump script
Browse files Browse the repository at this point in the history
  • Loading branch information
eser committed Jul 15, 2024
1 parent 5ddb5c5 commit b50f331
Show file tree
Hide file tree
Showing 4 changed files with 772 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Run @deno/bump-workspaces
run: |
git fetch --unshallow origin
deno run -A jsr:@deno/bump-workspaces@^0.1/cli
deno task script:bump-versions
env:
GITHUB_TOKEN: ${{ secrets.ESERSTACK_PAT }}
GIT_USER_NAME: ${{ github.actor }}
Expand Down
2 changes: 2 additions & 0 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
"cleanup": "rm -rf ./_etc/coverage/ ./_etc/coverage.lcov ./deno.lock && deno task check:mod",
"script:validate-licenses": "deno run --allow-read --allow-write ./scripts/validate-licenses.ts",
"script:validate-configs": "deno run --allow-net --allow-env --allow-read --allow-write ./scripts/validate-configs.ts",
"script:bump-versions-dry": "deno run --allow-net --allow-env --allow-read --allow-write --allow-run ./scripts/bump-versions.ts --dry-run",
"script:bump-versions": "deno run --allow-net --allow-env --allow-read --allow-write --allow-run ./scripts/bump-versions.ts",
"check:mod": "deno run --check --reload --allow-env --allow-read ./pkg/mod.ts",
"doc:lint": "deno doc --lint ./pkg/mod.ts",
"doc:generate": "rm -rf ./docs/ && deno doc --name='eserstack' --output=./docs/ --html ./pkg/mod.ts",
Expand Down
Loading

0 comments on commit b50f331

Please sign in to comment.