We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d90f46a commit cff3319Copy full SHA for cff3319
1 file changed
.github/workflows/build.yml
@@ -13,8 +13,23 @@ jobs:
13
build:
14
runs-on: ubuntu-latest
15
steps:
16
- - uses: actions/checkout@v3
17
- - uses: actions/setup-go@v4
+ - uses: actions/checkout@v4
+ - uses: actions/setup-go@v5
18
with:
19
go-version: 1.21.8
20
- - run: make NO_DOCKER=true
+ - run: make NO_DOCKER=true release
21
+ docker-build:
22
+ runs-on: ubuntu-latest
23
+ steps:
24
25
+ - name: Get Version
26
+ id: get_version
27
+ run: echo "sn_version=v$(cat shared/version.txt)" >> $GITHUB_OUTPUT
28
+ - uses: docker/setup-buildx-action@v3
29
+ - uses: docker/bake-action@v6
30
+ env:
31
+ VERSION: ${{steps.get_version.outputs.sn_version}}
32
+ with:
33
+ push: false
34
+ files: docker/daemon-bake.hcl
35
+ targets: smartnode
0 commit comments