-
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.
ci(github actions): fix registry link
- Loading branch information
Showing
1 changed file
with
2 additions
and
4 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 |
---|---|---|
|
@@ -38,8 +38,7 @@ jobs: | |
run: npm run docker-base | ||
- name: Tag base image | ||
run: | ||
docker tag linkerry/base \ | ||
registry.digitalocean.com/linkerry/base:latest | ||
docker tag linkerry/base registry.digitalocean.com/linkerry/base:latest | ||
# Install doctl. | ||
- name: Install doctl | ||
uses: digitalocean/action-doctl@v2 | ||
|
@@ -53,8 +52,7 @@ jobs: | |
run: docker build -t linkerry/web -f ./apps/web/Dockerfile . --platform=linux/amd64 | ||
- name: Tag web image | ||
run: | ||
docker tag linkerry/web \ | ||
registry.digitalocean.com/linkerry/web:latest | ||
docker tag linkerry/web registry.digitalocean.com/linkerry/web:latest | ||
- name: Push image to DO Container Registry | ||
run: docker push registry.digitalocean.com/linkerry/web:latest | ||
# - run: npx [email protected] affected -t docker-compose --base=origin/master~1 --head=origin/master |