Skip to content

Commit

Permalink
Allow Docker pipeline to not report FAIL if we cannot upload static H…
Browse files Browse the repository at this point in the history
…TML into Azure
  • Loading branch information
atodorov committed Jan 17, 2024
1 parent 1ede192 commit 719aee1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
- name: Azure login
if: ${{ github.event_name == 'pull_request' && env.GITHUB_TOKEN }}
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.CREDITCOIN_GITHUB_API_TOKEN }}
uses: azure/login@v1
Expand All @@ -72,6 +73,7 @@ jobs:
- name: Upload application files to Azure Storage
id: upload
if: ${{ github.event_name == 'pull_request' && env.GITHUB_TOKEN }}
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.CREDITCOIN_GITHUB_API_TOKEN }}
run: |
Expand All @@ -87,6 +89,7 @@ jobs:
- name: Post comment to PR
if: ${{ github.event_name == 'pull_request' && env.GITHUB_TOKEN }}
continue-on-error: true
uses: mshick/add-pr-comment@v2
env:
GITHUB_TOKEN: ${{ secrets.CREDITCOIN_GITHUB_API_TOKEN }}
Expand Down

0 comments on commit 719aee1

Please sign in to comment.