mirror of
https://github.com/primer/css.git
synced 2024-11-10 16:07:25 +03:00
38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
name: Release
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
jobs:
|
|
release:
|
|
name: Final
|
|
if: ${{ github.repository == 'primer/css' }}
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 14.x
|
|
|
|
- name: Install dependencies
|
|
run: yarn
|
|
|
|
- name: Create release pull request or publish to npm
|
|
id: changesets
|
|
uses: changesets/action@master
|
|
with:
|
|
title: Release Tracking
|
|
# This expects you to have a script called release which does a build for your packages and calls changeset publish
|
|
publish: yarn release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GPR_AUTH_TOKEN_SHARED }}
|
|
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN_SHARED }}
|