-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from ahrjarrett/@ahrjarrett/v0.40.9
fix: separates CI version script from local one
- Loading branch information
Showing
8 changed files
with
101 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"any-ts": patch | ||
--- | ||
|
||
ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"any-ts": patch | ||
--- | ||
|
||
fix: straightens out release pipeline |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: Release package | ||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/main' | ||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v4 | ||
- name: Install pnpm | ||
run: corepack enable | ||
- name: Install node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: .node-version | ||
cache: pnpm | ||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
- name: Build | ||
run: production=true pnpm build | ||
- name: Create PR or publish | ||
id: changesets | ||
uses: changesets/action@v1 | ||
with: | ||
version: pnpm run ci:version | ||
publish: pnpm run ci:publish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
# release: | ||
# name: Release Packages | ||
# runs-on: ubuntu-latest | ||
# permissions: | ||
# contents: write | ||
# packages: write | ||
# pull-requests: write | ||
# needs: [build] | ||
# if: github.ref == 'refs/heads/main' | ||
# steps: | ||
# - name: Checkout project | ||
# uses: actions/checkout@v4 | ||
# - name: Install pnpm | ||
# run: corepack enable | ||
# - name: Install node | ||
# uses: actions/setup-node@v4 | ||
# with: | ||
# node-version-file: .node-version | ||
# cache: pnpm | ||
# # - name: Configure npm | ||
# # run: | | ||
# # echo '//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}' >> .npmrc | ||
# # env: | ||
# # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# - name: Install dependencies | ||
# run: pnpm install | ||
# - name: Build | ||
# run: production=true pnpm build | ||
# - name: Create PR or publish | ||
# id: changesets | ||
# uses: changesets/action@v1 | ||
# with: | ||
# version: pnpm run version | ||
# publish: pnpm run ci:publish | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters