Skip to content

Commit

Permalink
fix regex
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood authored Apr 25, 2024
1 parent 6754cfc commit 5129ed6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Remove target folder from .gitignore
run: |
# allow publishing the target folder
sed -i '/^target.*/d' .gitignore
sed -i 's#^/target/$##g' .gitignore
- uses: viash-io/viash-actions/ns-build@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Remove target folder from .gitignore
run: |
# allow publishing the target folder
sed -i '/^target.*/d' .gitignore
sed -i 's#^/target/$##g' .gitignore
- uses: viash-io/viash-actions/ns-build@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Remove target folder from .gitignore
run: |
# allow publishing the target folder
sed -i '/^target.*/d' .gitignore
sed -i 's#^/target/$##g' .gitignore
- uses: viash-io/viash-actions/ns-build@v5
with:
Expand Down

0 comments on commit 5129ed6

Please sign in to comment.