beta: Beta OpenAPI file replicated from Notehub commit 70c047f #51
Workflow file for this run
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: Publish beta version of notehub-js to npm | |
on: | |
push: | |
branches: | |
- "test-release-**" | |
paths: | |
- "openapi.yaml" | |
jobs: | |
publish-beta: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get current version from config.json | |
id: get_version | |
run: | | |
CURRENT_VERSION=$(jq -r .projectVersion config.json) | |
echo "Current project version: $CURRENT_VERSION" | |
echo "CURRENT_VERSION=$CURRENT_VERSION" >> $GITHUB_ENV | |
- name: Get existing beta versions from npm | |
id: get_existing_versions | |
run: bash ./.github/scripts/get-existing-beta-versions.sh $CURRENT_VERSION | |
- name: Update version to beta | |
run: | | |
# Update config.json with the new beta version | |
jq --arg new_version "$new_version" '.projectVersion = $new_version' config.json > config.tmp.json && mv config.tmp.json config.json | |
echo "Updated project version to: $new_version" | |
- name: Install Dependencies | |
run: npm install | |
- name: Remove Outdated SDK Folder | |
run: rm -rf src | |
- name: Generate New SDK | |
run: npm run generateDocs | |
- name: Setup .npmrc file to publish to npm | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
registry-url: "https://registry.npmjs.org" | |
- name: Install dependencies | |
run: | | |
cd src | |
npm install | |
- name: Publish Beta Version to npm | |
run: | | |
echo "Publishing beta version to npm... $new_version" | |
cd src | |
npm publish --tag beta --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Commit Updated config.json | |
run: | | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add config.json | |
git commit -m "Update project version to ${{ steps.update_version.outputs.new_version }} [skip ci]" | |
git push |