Skip to content

Commit

Permalink
fix(github): there was some funky escaping breaking the workflows (#2566
Browse files Browse the repository at this point in the history
)

* fix(github): there was some funky escaping breaking the workflows

* fix(github): replace slash in test name
  • Loading branch information
GeorgeMac authored Dec 19, 2023
1 parent 253b8e8 commit c05a807
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 c05a807

Please sign in to comment.