Skip to content

Commit

Permalink
WIP: individual publishing of packages
Browse files Browse the repository at this point in the history
  • Loading branch information
gagik committed Dec 18, 2024
1 parent 7cc65fe commit a2f246b
Show file tree
Hide file tree
Showing 35 changed files with 242 additions and 251 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/bump-packages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Bump packages
on:
workflow_dispatch:
push:
branches:
- main

jobs:
update_generated_files:
name: Bump packages
runs-on: ubuntu-latest
steps:
- name: Create Github App Token
uses: mongodb-js/devtools-shared/actions/setup-bot-token@main
id: app-token
with:
app-id: ${{ vars.DEVTOOLS_BOT_APP_ID }}
private-key: ${{ secrets.DEVTOOLS_BOT_PRIVATE_KEY }}

- uses: actions/checkout@v4
with:
# don't checkout a detatched HEAD
ref: ${{ github.head_ref }}

- uses: actions/setup-node@v4
with:
node-version: 20.16.0
cache: "npm"

- name: Install npm@10.2.4
run: |
npm install -g npm@10.2.4
- name: Install Dependencies
run: |
npm -v
npm ci
- name: Bump packages
env:
LAST_BUMP_COMMIT_MESSAGE: "chore(release): bump package versions"
SKIP_BUMP_PACKAGES: "mongodb-compass"
run: |
npm run bump-packages
git add .
git commit --no-allow-empty -m "$LAST_BUMP_COMMIT_MESSAGE" || true
- name: Create Pull Request
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # 7.0.5
with:
token: ${{ steps.app-token.outputs.token }}
commit-message: "chore(release): bump package versions"
branch: ci/bump-packages
title: "chore(release): bump package versions"
labels: no-title-validation
body: |
- Bump package versions
8 changes: 2 additions & 6 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
"packages": [
"configs/*",
"packages/*",
"scripts/docker"
],
"version": "0.0.0-dev.0"
"packages": ["configs/*", "packages/*", "scripts/docker"],
"version": "independent"
}
Loading

0 comments on commit a2f246b

Please sign in to comment.