Skip to content

Commit

Permalink
Merge pull request #109 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 5b246ab + 2fd11ff commit 9e036ca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ jobs:
if: ${{ env.changed == 'true' && github.ref == 'refs/heads/main' }}
run: |
cd packages/lasereyes
new_version=$(npm version patch)
echo "new_version=${new_version}" >> $GITHUB_ENV
npm version patch
cd ../../
env:
Expand Down Expand Up @@ -165,8 +167,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: "v${{ steps.bump.outputs.new_version }}"
release_name: "Release v${{ steps.bump.outputs.new_version }}"
tag_name: "v${{ env.new_version }}"
release_name: "Release v${{ env.new_version }}"
body_path: detailed_release_notes.md
draft: false
prerelease: false
Expand Down
1 change: 1 addition & 0 deletions packages/lasereyes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ If you find Lasereyes useful or use it for work, please consider [sponsoring Las
[Sponsor Laser Eyes](https://github.com/sponsors/omnisat)
test
test
test
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.19",
"version": "0.0.20-rc.1",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
Expand Down

0 comments on commit 9e036ca

Please sign in to comment.