Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chand1012 committed Aug 23, 2024
1 parent ae4ecda commit 7b6f811
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
27 changes: 24 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main

jobs:
build:
build-avalanche:
runs-on: ubuntu-latest

steps:
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Build Docker container with build args
run: |
cd subnet-evm
docker build -f ../Dockerfile --build-arg AVALANCHE_VERSION=v1.11.10 -t ghcr.io/multisig-labs/gogopro-container .
docker build -f ../Dockerfile --build-arg AVALANCHE_VERSION=v1.11.10 -t ghcr.io/multisig-labs/lancer-avalanchego .
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
Expand All @@ -32,4 +32,25 @@ jobs:

- name: Push Docker image to registry
run: |
docker push ghcr.io/multisig-labs/gogopro-container
docker push ghcr.io/multisig-labs/lancer-avalanchego
build-watchdog:
runs-on: ubuntu-latest

steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3

- name: Build container
run: docker build -f Dockerfile.watchdog -t ghcr.io/multisig-labs/lancer-watchdog .

- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ghcr.io
username: chand1012
password: ${{ secrets.GH_PAT }}

- name: Push Docker image to registry
run: |
docker push ghcr.io/multisig-labs/lancer-watchdog
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"deno.enable": true
"deno.enable": true,
}

0 comments on commit 7b6f811

Please sign in to comment.