Skip to content

chore(deps): update actions/checkout digest to 44c2b7a (#255) #64

chore(deps): update actions/checkout digest to 44c2b7a (#255)

chore(deps): update actions/checkout digest to 44c2b7a (#255) #64

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release Package
if: github.repository_owner == 'krshoss'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: 18.x
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build package
run: yarn build
env:
BUNDLEWATCH_GITHUB_TOKEN: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
- name: Release package
run: yarn release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_AUTHOR_NAME: "Krish Gupta"
GIT_AUTHOR_EMAIL: "[email protected]"
GIT_COMMITTER_NAME: "Krish Gupta"
GIT_COMMITTER_EMAIL: "[email protected]"