Skip to content

Commit

Permalink
test: fix uploading
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Dec 15, 2023
1 parent 1654f76 commit ada5dac
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/app-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,15 @@ jobs:
E2ENETWORK='${{ inputs.default_network_value_for_e2e }}' npx cucumber-js --tags "${{ matrix.tags }} ${{ inputs.environmentTags }} and not @testnet"
fi
- name: Upload tests to the Allure proj
if: always() && inputs.publish_to_allure == true
- if: always()
name: Upload artifacts to Git
uses: actions/upload-artifact@v3
with:
name: allure-results
path: packages/app/allure-results

- name: Upload tests to Allure
if: always()
env:
ALLURE_TOKEN: ${{ secrets.ALLURE_TOKEN }}
run: |
Expand Down

0 comments on commit ada5dac

Please sign in to comment.