-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Publish @next release on merge to
main
(#205)
- Loading branch information
1 parent
8e98499
commit dcfefbc
Showing
1 changed file
with
58 additions
and
0 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,58 @@ | ||
# The current state of `main` is published as the @next version on the `dist` branch | ||
|
||
name: Update @next schema versions | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
VERSION: "@next" | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18.16.1' | ||
|
||
- name: Install pnpm | ||
run: npm install -g pnpm | ||
|
||
- name: Install Dependencies | ||
run: pnpm install | ||
|
||
- name: Build JSON schema files | ||
run: pnpm build | ||
|
||
- name: Move JSON schema files to /@next folder | ||
run: | | ||
mv schemas/* "$GITHUB_WORKSPACE/${{ env.VERSION }}" | ||
mv types/* "$GITHUB_WORKSPACE/${{ env.VERSION }}/types" | ||
# Copy JSON files, preserving directory structure | ||
rsync -a --prune-empty-dirs --include '*/' --include '*.json' --exclude '*' examples/ "$GITHUB_WORKSPACE/${{ env.VERSION }}/examples/" | ||
# Remove JSON files from source destination | ||
find examples -type f -name "*.json" -delete | ||
- name: Checkout Dist Branch | ||
run: | | ||
git fetch origin dist | ||
git checkout -b dist origin/dist | ||
- name: Commit and Push Changes | ||
run: | | ||
git config user.name "${GITHUB_ACTOR}" | ||
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | ||
git add . | ||
git commit -m "Add build files for ${{ env.VERSION }}" | ||
git push origin dist | ||