Skip to content

build(deps): bump undici from 5.28.3 to 5.28.4 #46

build(deps): bump undici from 5.28.3 to 5.28.4

build(deps): bump undici from 5.28.3 to 5.28.4 #46

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Install Dependencies
run: npm ci
- name: Create Release Pull Request
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tags:
name: Create tags
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.GH_APP_ID }}
private_key: ${{ secrets.GH_PRIVATE_KEY }}
- name: Tag Release
uses: tpluscode/action-autotag@min-version-21
with:
tag_prefix: v
env:
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}