Skip to content

Commit

Permalink
Changesets (#15)
Browse files Browse the repository at this point in the history
* changeset init

* add package init changeset

* add release workflow

* add snapshot-release workflow

* add ignore list packages
  • Loading branch information
AkifumiSato authored Sep 18, 2023
1 parent 9019ea4 commit cd03936
Show file tree
Hide file tree
Showing 7 changed files with 1,225 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .changeset/breezy-penguins-boil.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@location-state/core": patch
"@location-state/next": patch
---

Initial construction of the package.
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [["@location-state/core", "@location-state/next"]],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["example-next"]
}
6 changes: 5 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ jobs:
timeout-minutes: 30
name: Run check project
steps:
- uses: actions/checkout@v3
- name: Checkout Repo
uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Install and cache nodejs
uses: actions/setup-node@v3
with:
Expand Down
48 changes: 48 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Release

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Install and cache nodejs
uses: actions/setup-node@v3
with:
node-version: '18'
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: false
- name: Install packages
run: pnpm i --ignore-scripts
- name: Release check&build
run: pnpm check
- name: Setup npm auth
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" >> ~/.npmrc
npm whoami
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@master
with:
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
46 changes: 46 additions & 0 deletions .github/workflows/snapshot-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: "Snapshot Release@next"

on:
push:
branches:
- main

permissions:
contents: read

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Install and cache nodejs
uses: actions/setup-node@v3
with:
node-version: '18'
- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: 8
run_install: false
- name: Install packages
run: pnpm i --ignore-scripts
- name: Release build
run: pnpm build
- name: Setup npm auth
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" >> ~/.npmrc
npm whoami
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: "Release @next"
run: |
pnpm changeset version --snapshot next
pnpm changeset publish --no-git-tag --snapshot --tag next
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@
"typecheck": "turbo typecheck",
"lint": "turbo lint",
"check": "turbo dts typecheck lint build test",
"prepare": "husky install"
"prepare": "husky install",
"release": "pnpm publish -r --ignore-scripts --access public --filter \"@location-state/*\""
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@types/jest": "29.5.3",
"@types/node": "20.4.5",
"@types/react": "18.2.21",
Expand Down
Loading

0 comments on commit cd03936

Please sign in to comment.