Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
Remove artifacts folder usage
Browse files Browse the repository at this point in the history
  • Loading branch information
om4csaba committed Feb 27, 2023
1 parent 89d962d commit 624c57e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.gitattributes export-ignore
.github/ export-ignore
.gitignore export-ignore
artifacts/ export-ignore
manifest.json export-ignore
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
if: matrix.test-type == 'integration'
run: |
npm install -g @stoplight/prism-cli
prism mock tests/openapi.yaml >artifacts/prism.log 2>&1 &
prism mock tests/openapi.yaml >prism.log 2>&1 &
- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -123,7 +123,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ${{ github.event.repository.name }}-prism.log
path: artifacts/prism.log
path: prism.log

coverage:
name: Coverage
Expand Down Expand Up @@ -170,8 +170,8 @@ jobs:
name: ${{ github.event.repository.name }}-coverage-report
path: coverage/

- name: Upload artifacts
- name: Upload prism log
uses: actions/upload-artifact@v3
with:
name: ${{ github.event.repository.name }}-artifacts
path: artifacts/
name: ${{ github.event.repository.name }}-prism.log
path: prism.log

0 comments on commit 624c57e

Please sign in to comment.