1
1
mirror of https://github.com/primer/css.git synced 2024-12-23 06:01:54 +03:00

Creating changesets workflow

This commit is contained in:
Jon Rohan 2021-03-21 21:50:54 -07:00
parent d0c569c53e
commit 22ed661421
No known key found for this signature in database
GPG Key ID: B0BBE304A9A0AECB
7 changed files with 1856 additions and 23 deletions

8
.changeset/README.md Normal file
View File

@ -0,0 +1,8 @@
# Changesets
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md)

10
.changeset/config.json Normal file
View File

@ -0,0 +1,10 @@
{
"$schema": "https://unpkg.com/@changesets/config@1.5.0/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"linked": [],
"access": "restricted",
"baseBranch": "master",
"updateInternalDependencies": "patch",
"ignore": []
}

View File

@ -1,18 +0,0 @@
name: changelog
on:
push:
branches:
- 'release-*'
- '*changelog*'
jobs:
all:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 11
- name: install
run: npm install
- name: changelog
run: script/changelog.js

View File

@ -19,7 +19,3 @@ jobs:
- name: test deprecations
if: startsWith(github.ref, 'refs/heads/release-')
run: script/test-deprecations.js
- uses: primer/publish@v1.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}

40
.github/workflows/publish.yml vendored Normal file
View File

@ -0,0 +1,40 @@
name: Primer Primitives
on: [push]
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@master
- name: Set up Node.js 10.x
uses: actions/setup-node@master
with:
node-version: 10
- name: Install dependencies
run: yarn
- name: Create .npmrc
run: |
cat << EOF > "$HOME/.npmrc"
//registry.npmjs.org/:_authToken=$NPM_TOKEN
EOF
env:
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN_SHARED }}
- name: Release snapshot
run: |
yarn changeset version --snapshot
yarn changeset publish --tag canary
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Find version
run: |
name=$(jq -r .name package.json)
version=$(jq -r .version package.json)
npx action-status --context="$name" --state=success --description=$version --url "https://unpkg.com/$name@$version/"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

1795
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -37,12 +37,14 @@
"build-storybook": "build-storybook -o .storybuild",
"test": "npm-run-all -s test-urls test-migrate",
"test-urls": "script/test-doc-urls.js",
"test-migrate": "script/test-migrate"
"test-migrate": "script/test-migrate",
"release": "changeset publish"
},
"dependencies": {
"@primer/octicons": "^9.1.1"
},
"devDependencies": {
"@changesets/cli": "^2.14.1",
"@octokit/rest": "^16.34.0",
"@storybook/addon-viewport": "5.3.18",
"@storybook/react": "5.3.18",