Skip to content

Commit

Permalink
ci(*): integrate version_bump script (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart authored Jul 29, 2024
1 parent 2c8deee commit 8c1e044
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: version_bump

on: workflow_dispatch

jobs:
build:
name: version bump
runs-on: ubuntu-latest-4-cores
timeout-minutes: 15

steps:
- name: Clone repository
uses: actions/checkout@v4

- name: Set up Deno
uses: denoland/setup-deno@v1

- name: Run workspaces version bump
run: |
git fetch --unshallow origin
deno run -A jsr:@deno/bump-workspaces@0.1.18/cli
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 8c1e044

Please sign in to comment.