Skip to content

Commit

Permalink
Try uniquely naming the artifact. #1410
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeit-internet2 committed Mar 8, 2024
1 parent b0e412a commit bd3d567
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/testbed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ name: testbed
on:
push:
branches:
# TODO: Remove this after development
- 'issue-1410'
- 'master'
- 'main'
- '[0-9]+.[0-9]+.[0-9]+'
paths:
- '.github/workflows/testbed.yml'
- 'testbed/**/*'
Expand All @@ -30,12 +34,15 @@ jobs:
uses: actions/checkout@v4

- name: Build the testbed configuration
run: make -C testbed
run: |
set -e
make -C testbed
cp testbed/testbed.json testbed/testbed-${{ github.ref }}.json
- name: Publish the result
uses: actions/upload-artifact@v4
with:
name: development-testbed
path: testbed/testbed.json
path: testbed/testbed-${{ github.ref }}.json
if-no-files-found: error
overwrite: true

0 comments on commit bd3d567

Please sign in to comment.