Skip to content

chore(deps-dev): bump ruff from 0.11.13 to 0.13.2 (#279) #12

chore(deps-dev): bump ruff from 0.11.13 to 0.13.2 (#279)

chore(deps-dev): bump ruff from 0.11.13 to 0.13.2 (#279) #12

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Create release and sync release PR
runs-on: ubuntu-latest
steps:
- name: Setup node
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: "22"
- name: Install release-please
run: npm install -g release-please@17.1.0
- name: Create release
run: |
release-please github-release \
--repo-url=mcous/decoy \
--config-file=.github/release-please-config.json \
--manifest-file=.github/.release-please-manifest.json \
--token=${{ secrets.RELEASE_PLEASE_GITHUB_TOKEN }}
- name: Sync release PR
run: |
release-please release-pr \
--repo-url=mcous/decoy \
--config-file=.github/release-please-config.json \
--manifest-file=.github/.release-please-manifest.json \
--token=${{ secrets.RELEASE_PLEASE_GITHUB_TOKEN }}