Skip to content

Commit

Permalink
Merge pull request #49 from omnisat/hath
Browse files Browse the repository at this point in the history
lala
  • Loading branch information
hathbanger authored Oct 12, 2024
2 parents c0e4a6a + 2f81c6b commit 7003896
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,19 @@ jobs:
if pnpm changeset status | grep -q "pre mode"; then
echo "Already in pre-release mode, exiting pre mode..."
pnpm changeset pre exit
else
echo "Not in pre-release mode."
fi
# Run Changesets pre-release mode for RC
- name: Run Changesets pre-release mode for RC
if: github.ref == 'refs/heads/dev' && env.changed == 'true'
run: pnpm changeset pre enter rc
run: |
if ! pnpm changeset status | grep -q "pre mode"; then
pnpm changeset pre enter rc
else
echo "Already in pre-release mode, skipping entering pre-release mode."
fi
# Commit version bumps and changelog
- name: Commit version bumps and changelog
Expand Down
1 change: 0 additions & 1 deletion packages/lasereyes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,3 @@ If you find Lasereyes useful or use it for work, please consider [sponsoring Las
[Sponsor Laser Eyes](https://github.com/sponsors/omnisat)



0 comments on commit 7003896

Please sign in to comment.