Skip to content

chore: publish packages to GitHub Packages registry #121

chore: publish packages to GitHub Packages registry

chore: publish packages to GitHub Packages registry #121

Workflow file for this run

name: Version packages
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
version:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies
run: npm install
- name: Create Release Pull Request
uses: changesets/action@v1
with:
title: "chore: Version packages"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}