forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Replace always() with continue-on-error
- Loading branch information
1 parent
396bff7
commit 6bf027b
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,12 +78,12 @@ jobs: | |
# That's OK--if we fail to log in, we'll proceed anonymously, and hope we don't get rate-limited. | ||
- name: Try to log into Docker Hub | ||
uses: docker/[email protected] | ||
continue-on-error: true | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
|
||
- name: Start MongoDB | ||
if: always() # Continue even if the previous step (log into DockerHub) failed. | ||
uses: supercharge/[email protected] | ||
with: | ||
mongodb-version: ${{ matrix.mongo-version }} | ||
|