Skip to content

Commit

Permalink
fix: clean branch name for output artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
acrois committed Feb 4, 2024
1 parent 274a791 commit be0f2f5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@ jobs:
with:
cache: 'pip'
python-version: '3.x'
- name: Set up Bun
- id: setup-env
name: Set up Bun
run: |
curl -fsSL https://bun.sh/install | bash
echo "$HOME/.bun/bin" >> $GITHUB_PATH
echo "TEST_NAME=${${{ matrix.script }}//\//-}" >> $GITHUB_OUTPUT
- name: Install AWS CLI
run: pip install awscli pulumi-local terraform-local awscli-local
- name: Execute Script
Expand All @@ -53,5 +55,5 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: output-${{ matrix.script }}
name: output-${{ steps.setup-env.outputs.TEST_NAME }}
path: ./output

0 comments on commit be0f2f5

Please sign in to comment.