Skip to content

Commit

Permalink
Merge pull request #119 from omnisat/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
hathbanger authored Oct 13, 2024
2 parents d4eaf66 + 8d6b173 commit 7d61410
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 7 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,25 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Bump versions for main branch (patch releases)
# Patch all changed packages (no RC) when merging to main
- name: Bump version for lasereyes-core (main)
if: ${{ env.lasereyes_core_changed == 'true' && github.ref == 'refs/heads/main' }}
run: |
cd packages/lasereyes-core
npm version patch
cd ../../
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Bump version for lasereyes-react (main)
if: ${{ env.lasereyes_react_changed == 'true' && github.ref == 'refs/heads/main' }}
run: |
cd packages/lasereyes-react
npm version patch
cd ../../
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Bump version for lasereyes (main)
if: ${{ (env.lasereyes_changed == 'true' || env.lasereyes_core_changed == 'true' || env.lasereyes_react_changed == 'true') && github.ref == 'refs/heads/main' }}
id: bump_lasereyes
Expand Down
2 changes: 0 additions & 2 deletions packages/lasereyes-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,3 @@ If you find Laser Eyes useful or use it for work, please consider [sponsoring La
<br>

[Sponsor Laser Eyes](https://github.com/sponsors/omnisat)

<br />
2 changes: 1 addition & 1 deletion packages/lasereyes-core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@omnisat/lasereyes-core",
"private": false,
"version": "0.0.5-rc.3",
"version": "0.0.5-rc.4",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/lasereyes-react/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Lasereyes React

# Getting Started








4 changes: 2 additions & 2 deletions packages/lasereyes-react/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/lasereyes-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@omnisat/lasereyes-react",
"private": false,
"version": "0.0.3-rc.2",
"version": "0.0.3-rc.4",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/lasereyes/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@omnisat/lasereyes",
"private": false,
"version": "0.0.34",
"version": "0.0.35-rc.1",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
Expand Down

0 comments on commit 7d61410

Please sign in to comment.