[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Decouple publishing packages from publishing CLIs #1778

Merged
merged 20 commits into from
Jun 28, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix validate version step
  • Loading branch information
marcbouchenoire committed Jun 28, 2024
commit 273682c342e2881a9b8f0c4e91accb9e2e29f2ed
3 changes: 2 additions & 1 deletion .github/workflows/publish-devtools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ jobs:
- name: Validate version
env:
VERSION_TAG: ${{ inputs.tag }}
run: test "${VERSION_TAG}" =~ "^v[0-9]+\.[0-9]+\.[0-9]+$"
run: |
[[ "${VERSION_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]

- name: Validate branch
run: test "$(git rev-parse --abbrev-ref HEAD)" == "main"
Expand Down
Loading