Skip to content

Commit

Permalink
test: Remove upload artifacts (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah committed Oct 25, 2022
1 parent d53d691 commit 259c174
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 17 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/example.yml
Expand Up @@ -55,7 +55,3 @@ jobs:
version: ${{matrix.cloudquery-version}}
- name: Sync with CloudQuery
run: cloudquery sync example_configs/serial.yml --log-console
- uses: actions/upload-artifact@v3
if: always()
with:
path: 'cloudquery.log'
5 changes: 0 additions & 5 deletions .github/workflows/example_matrix.yml
Expand Up @@ -48,8 +48,3 @@ jobs:
run: cloudquery sync example_configs/parallel.yml --log-console
env:
CQ_DSN: postgresql://postgres:pass@localhost:5432/postgres?sslmode=disable
- uses: actions/upload-artifact@v3 # Upload logs as a GitHub actions artifact
if: always()
with:
name: 'cloudquery.log'
path: 'cloudquery-${{ matrix.region }}.log'
9 changes: 1 addition & 8 deletions README.md
Expand Up @@ -41,12 +41,5 @@ jobs:
version: latest

- name: Sync with CloudQuery
run: cloudquery sync [file or directories...]

# Upload logs as a GitHub actions artifact
- uses: actions/upload-artifact@v3
if: always()
with:
name: 'cloudquery.log'
path: 'cloudquery.log'
run: cloudquery sync [file or directories...] --log-console
```

0 comments on commit 259c174

Please sign in to comment.