forked from blockscout/frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1 change colors and update to newest blockscoutV2
- Loading branch information
1 parent
d71e398
commit 3bd9547
Showing
28 changed files
with
46 additions
and
1,282 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Build and push Docker image | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-and-push: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: docker/setup-qemu-action@v1 | ||
- uses: docker/setup-buildx-action@v1 | ||
- uses: azure/docker-login@v1 | ||
with: | ||
login-server: ataacr.azurecr.io | ||
username: ${{ secrets.ATA_ACR_USERNAME }} | ||
password: ${{ secrets.ATA_ACR_PASSWORD }} | ||
- uses: docker/build-push-action@v2 | ||
with: | ||
push: true | ||
tags: ataacr.azurecr.io/blockscout-frontend:${{ github.sha }} |
Oops, something went wrong.