mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
26 lines
653 B
YAML
26 lines
653 B
YAML
name: version_bump
|
|
permissions:
|
|
contents: write
|
|
on: workflow_dispatch
|
|
jobs:
|
|
build:
|
|
name: version bump
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Deno
|
|
uses: denoland/setup-deno@v1
|
|
|
|
- name: Run version bump
|
|
run: |
|
|
git fetch --unshallow origin
|
|
deno run -A jsr:@deno/bump-workspaces@^0.1/cli --import-map import_map.json
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }}
|
|
GIT_USER_NAME: ${{ github.actor }}
|
|
GIT_USER_EMAIL: ${{ github.actor}}@users.noreply.github.com
|