Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
it-harrison committed Nov 21, 2023
1 parent b32eb33 commit 813d750
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Release and Publish

on:
push:
branches:
- master

jobs:
release-please-packages-a:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
token: ${{secrets.MONO_REPO_TOKEN}}
release-type: node
monorepo-tags: true
command: manifest
6 changes: 6 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
".": "1.0.0",
"packages/pack-a": "1.0.0",
"packages/pack-b": "1.0.0",
"packages/pack-c": "1.0.0"
}
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "repoman",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:it-harrison/repoman.git",
"author": "Ian <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
]
}
Empty file added packages/pack-a/app.js
Empty file.
6 changes: 6 additions & 0 deletions packages/pack-a/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "pack-a",
"version": "1.0.0",
"main": "index.js",
"license": "MIT"
}
Empty file added packages/pack-b/app.js
Empty file.
6 changes: 6 additions & 0 deletions packages/pack-b/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "pack-b",
"version": "1.0.0",
"main": "index.js",
"license": "MIT"
}
Empty file added packages/pack-c/app.js
Empty file.
6 changes: 6 additions & 0 deletions packages/pack-c/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "pack-c",
"version": "1.0.0",
"main": "index.js",
"license": "MIT"
}

0 comments on commit 813d750

Please sign in to comment.