Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit dbf4260

Browse files
committed
Fix cp command
1 parent 94af6a3 commit dbf4260

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/compilation.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: compilation
1+
name: Test files compilation
22

33
on:
44
push:
55
branches:
6-
- main
6+
- "**" # TODO main
77
pull_request: # TODEL
88
branches:
99
- '**'
@@ -12,7 +12,7 @@ permissions:
1212
contents: write
1313

1414
jobs:
15-
deploy:
15+
compilation:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v4
@@ -61,9 +61,9 @@ jobs:
6161
shell: bash
6262
run: |
6363
git checkout --orphan compiled-test-files
64-
cp tests/output_betterproto tests_betterproto
65-
cp tests/output_betterproto_pydantic tests_betterproto_pydantic
66-
cp tests/output_reference tests_reference
64+
cp -r tests/output_betterproto tests_betterproto
65+
cp -r tests/output_betterproto_pydantic tests_betterproto_pydantic
66+
cp -r tests/output_reference tests_reference
6767
git add tests_betterproto tests_betterproto_pydantic tests_reference
6868
git commit -m "Add compilation output"
6969
git push --force origin compiled-test-files

0 commit comments

Comments
 (0)