Skip to content

Commit

Permalink
[skip ci] decrease verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
bhamail committed Aug 2, 2023
1 parent 0188098 commit ebe10d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Deploy .rpm to a Yum repository
run: |
echo "Running deploy-rpm: ${RPM_NAME} to: ${{ inputs.serverurl }}${{ inputs.repository-yum }}"
curl -v --user ${{ secrets.username-yum }}:${{ secrets.password-yum }} --upload-file build/${RPM_NAME} ${{ inputs.serverurl }}${{ inputs.repository-yum }}/
curl --user ${{ secrets.username-yum }}:${{ secrets.password-yum }} --upload-file build/${RPM_NAME} ${{ inputs.serverurl }}${{ inputs.repository-yum }}/
res=$?
if test "$res" != "0"; then
echo "the yum curl command failed with: $res"
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Deploy .deb to an Apt repository
run: |
echo "Running deploy-deb: ${DEB_NAME} to: ${{ inputs.serverurl }}${{ inputs.repository-apt }}"
curl -v --user ${{ secrets.username-apt }}:${{ secrets.password-apt }} -H "Content-Type: multipart/form-data" --data-binary "@build/${DEB_NAME}" ${{ inputs.serverurl }}${{ inputs.repository-apt }}/
curl --user ${{ secrets.username-apt }}:${{ secrets.password-apt }} -H "Content-Type: multipart/form-data" --data-binary "@build/${DEB_NAME}" ${{ inputs.serverurl }}${{ inputs.repository-apt }}/
res=$?
if test "$res" != "0"; then
echo "the apt curl command failed with: $res"
Expand Down

0 comments on commit ebe10d4

Please sign in to comment.