-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (38 loc) · 1.08 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Docker build CI
run-name: Docker build CI triggered from @${{ github.actor }} of ${{ github.head_ref }}
on:
push:
branches:
- 'v*'
permissions:
contents: read
packages: write # Required to push Docker images to ghcr.io
jobs:
docker:
name: Docker build
runs-on: ubuntu-24.04
steps:
- name: Remove unnecessary files
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build nitro-node docker
uses: docker/build-push-action@v5
with:
target: nitro-node
push: true
context: .
tags: ghcr.io/conduitxyz/plume-nitro:${{ github.ref_name }}