Skip to content

chore(deps): bump actions/setup-node from 5.0.0 to 6.0.0 (#281) #15

chore(deps): bump actions/setup-node from 5.0.0 to 6.0.0 (#281)

chore(deps): bump actions/setup-node from 5.0.0 to 6.0.0 (#281) #15

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@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: "22"
- name: Install release-please
run: npm install -g [email protected]
- 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 }}