Skip to content

chore(deps): bump marocchino/sticky-pull-request-comment #109

chore(deps): bump marocchino/sticky-pull-request-comment

chore(deps): bump marocchino/sticky-pull-request-comment #109

Workflow file for this run

name: Release
on:
push:
branches:
- main
defaults:
run:
shell: bash
jobs:
publish:
runs-on: ubuntu-latest
permissions: write-all
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_PAC_TOKEN }}
GH_TOKEN: ${{ secrets.GH_PAC_TOKEN }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node LTS version
uses: actions/setup-node@v4
with:
cache: yarn
node-version: 22
registry-url: "https://registry.npmjs.org"
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Semantic release
uses: cycjimmy/semantic-release-action@v4.2.0
env:
GITHUB_TOKEN: ${{ secrets.GH_PAC_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}