Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tilucasoli committed Jul 26, 2024
1 parent 8eb6096 commit 74763f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@ jobs:
- name: Run melos fix
run: |
PACKAGES=""
if [[ "${{ github.event.inputs.mix_lint }}" == "true" ]]; then
if [[ "${{ github.event.inputs.mix_lint }}" == "false" ]]; then
PACKAGES+=" --ignore=packages/mix_lint"
fi
if [[ "${{ github.event.inputs.mix_annotations }}" == "true" ]]; then
if [[ "${{ github.event.inputs.mix_annotations }}" == "false" ]]; then
PACKAGES+=" --ignore=packages/mix_annotations"
fi
if [[ "${{ github.event.inputs.mix_generator }}" == "true" ]]; then
if [[ "${{ github.event.inputs.mix_generator }}" == "false" ]]; then
PACKAGES+=" --ignore=packages/mix_generator"
fi
if [[ "${{ github.event.inputs.mix }}" == "true" ]]; then
if [[ "${{ github.event.inputs.mix }}" == "false" ]]; then
PACKAGES+=" --ignore=packages/mix"
fi
if [[ "${{ github.event.inputs.remix }}" == "true" ]]; then
if [[ "${{ github.event.inputs.remix }}" == "false" ]]; then
PACKAGES+=" --ignore=packages/remix"
fi
Expand Down

0 comments on commit 74763f8

Please sign in to comment.