Skip to content

Commit

Permalink
Disable check.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Mar 14, 2024
1 parent 4c8dc3a commit fb86691
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 34 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Expand Up @@ -146,23 +146,23 @@ jobs:
- name: Lint Spell
run: pnpm lint-spell

changesets:
name: Changesets Status
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v3

- name: Install node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm

- name: Install dependencies
run: pnpm install

- name: Check for changeset
run: pnpm changeset status --since=main
# changesets:
# name: Changesets Status
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4

# - name: Install pnpm
# uses: pnpm/action-setup@v3

# - name: Install node
# uses: actions/setup-node@v4
# with:
# node-version: 20
# cache: pnpm

# - name: Install dependencies
# run: pnpm install

# - name: Check for changeset
# run: pnpm changeset status --since=main
27 changes: 13 additions & 14 deletions .github/workflows/release.yml
Expand Up @@ -2,7 +2,6 @@ name: Release

on:
workflow_dispatch:
pull_request: # TEMP

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -307,16 +306,16 @@ jobs:
path: packages/rolldown/dist
name: node-artifact

# - name: Publish
# run: |
# find ./packages/ -type d -maxdepth 1 -exec cp LICENSE {} \;
# find ./packages/ -type d -maxdepth 1 -exec cp THIRD-PARTY-LICENSE {} \;
# echo "//registry.npmjs.org/:_authToken=$ROLLDOWN_NPM_TOKEN" >> ~/.npmrc
# pnpm changeset version
# git add --all
# git commit -m "chore: Release"
# pnpm changeset publish
# git push --follow-tags
# env:
# NPM_TOKEN: ${{ secrets.ROLLDOWN_NPM_TOKEN }}
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish
run: |
find ./packages/ -type d -maxdepth 1 -exec cp LICENSE {} \;
find ./packages/ -type d -maxdepth 1 -exec cp THIRD-PARTY-LICENSE {} \;
echo "//registry.npmjs.org/:_authToken=$ROLLDOWN_NPM_TOKEN" >> ~/.npmrc
pnpm changeset version
git add --all
git commit -m "chore: Release"
pnpm changeset publish
git push --follow-tags
env:
NPM_TOKEN: ${{ secrets.ROLLDOWN_NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit fb86691

Please sign in to comment.