feat: move fileuploader from CL and able to upload multiple files (#11) #12
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
name: Changeset | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
create-release-pr: | |
name: Create Changeset PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Get changeset status | |
id: get-changeset-status | |
run: | | |
pnpm changeset status --output .changeset/status.json | |
new_version=$(jq -r '.releases[0].newVersion' < .changeset/status.json) | |
rm -v .changeset/status.json | |
echo "new-version=${new_version}" >> "$GITHUB_OUTPUT" | |
- name: Create Release Pull Request | |
uses: changesets/action@v1 | |
with: | |
commit: Release ${{ steps.get-changeset-status.outputs.new-version }} | |
title: Release ${{ steps.get-changeset-status.outputs.new-version }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |