Skip to content

Commit

Permalink
fix(github): replace slash in test name
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeMac committed Dec 19, 2023
1 parent 906e11d commit 8a1ebf5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,13 @@ jobs:
- name: Run Integration Tests
run: mage dagger:run "test:integration ${{ matrix.test }}"

- run: echo "INTEGRATION_TEST_NAME=${{ matrix.test }}" | tr '/' '-' >> $GITHUB_ENV

- name: Upload Flipt Service Logs
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: "build-logs-${{ matrix.test.replace('/', '-') }}"
name: "build-logs-${{ env.INTEGRATION_TEST_NAME }}"
path: "build/logs"
retention-days: 5

Expand Down

0 comments on commit 8a1ebf5

Please sign in to comment.