Skip to content

Commit

Permalink
Added overwrite option to command uploading results to azure blob sto…
Browse files Browse the repository at this point in the history
…rage.
  • Loading branch information
sipsorcery committed Aug 14, 2022
1 parent da10dc2 commit c47efd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/datachannel_echo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ jobs:
uses: azure/CLI@v1
with:
inlineScript: |
az storage blob upload --account-name webrtctestresults --container-name githubactions --name DataChannel_Echo_test_results.md --file DataChannel_Echo_test_results.md --account-key ${{ secrets.Azure_Key }}
az storage blob upload --account-name webrtctestresults --container-name githubactions --name DataChannel_Echo_test_results.png --file DataChannel_Echo_test_results.png --account-key ${{ secrets.Azure_Key }}
az storage blob upload --account-name webrtctestresults --container-name githubactions --name DataChannel_Echo_test_results.md --file DataChannel_Echo_test_results.md --account-key ${{ secrets.Azure_Key }} --overwrite
az storage blob upload --account-name webrtctestresults --container-name githubactions --name DataChannel_Echo_test_results.png --file DataChannel_Echo_test_results.png --account-key ${{ secrets.Azure_Key }} --overwrite
- name: Commit the results to the git repository
if: github.event_name != 'pull_request'
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/peerconnection-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ jobs:
uses: azure/CLI@v1
with:
inlineScript: |
az storage blob upload --account-name webrtctestresults --container-name githubactions --name PeerConnection_test_results.md --file PeerConnection_test_results.md --account-key ${{ secrets.Azure_Key }}
az storage blob upload --account-name webrtctestresults --container-name githubactions --name PeerConnection_test_results.png --file PeerConnection_test_results.png --account-key ${{ secrets.Azure_Key }}
az storage blob upload --account-name webrtctestresults --container-name githubactions --name PeerConnection_test_results.md --file PeerConnection_test_results.md --account-key ${{ secrets.Azure_Key }} --overwrite
az storage blob upload --account-name webrtctestresults --container-name githubactions --name PeerConnection_test_results.png --file PeerConnection_test_results.png --account-key ${{ secrets.Azure_Key }} --overwrite
- name: Commit the results to the git repository
if: github.event_name != 'pull_request'
run: |
Expand Down

0 comments on commit c47efd1

Please sign in to comment.