Skip to content

Commit

Permalink
Simplification & generalisation
Browse files Browse the repository at this point in the history
  • Loading branch information
naxvog committed Oct 1, 2024
1 parent 5a3fecc commit 025f8f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Modify composer.json
run: >
jq '.name |= "pestphp/pest-plugin-arch-dev" | . += {"replace":{"pestphp/pest-plugin-arch": "*"}}' composer.json > composer.json.tmp
jq '. += {"replace":{(.name): "*"}} | .name = (.name + "-dev")' composer.json.tmp
&& mv composer.json.tmp composer.json
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Modify composer.json
run: >
jq '.name |= "pestphp/pest-plugin-arch-dev" | . += {"replace":{"pestphp/pest-plugin-arch": "*"}}' composer.json > composer.json.tmp
jq '. += {"replace":{(.name): "*"}} | .name = (.name + "-dev")' composer.json.tmp
&& mv composer.json.tmp composer.json
- name: Install PHP dependencies
Expand Down

0 comments on commit 025f8f6

Please sign in to comment.