-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f080768
commit e6f745f
Showing
1 changed file
with
9 additions
and
8 deletions.
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 |
---|---|---|
|
@@ -25,14 +25,6 @@ jobs: | |
with: | ||
ref: ${{ github.GITHUB_REF }} | ||
|
||
# Log into the GitHub Container Registry so we can push the image | ||
- name: Log in to Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Get tag/release information for docker tags | ||
- name: Docker Metadata | ||
id: metadata | ||
|
@@ -68,6 +60,15 @@ jobs: | |
- name: Assert no outputs present in jupyter notebook | ||
uses: ResearchSoftwareActions/[email protected] | ||
|
||
|
||
# Log into the GitHub Container Registry so we can push the image | ||
- name: Log in to Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
|