File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed
Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 11{
2+ "$schema" : " https://raw.githubusercontent.com/function61/turbobob/refs/heads/main/pkg/bobfile/bobfile.schema.json" ,
23 "for_description_of_this_file_see" : " https://github.com/function61/turbobob" ,
34 "version_major" : 1 ,
45 "project_name" : " turbobob" ,
2829 ]
2930 }
3031 ],
32+ "docker_images" : [
33+ {
34+ "image" : " ghcr.io/function61/turbobob" ,
35+ "platforms" : [" linux/amd64" ]
36+ }
37+ ],
3138 "os_arches" : {
3239 "linux-amd64" : true ,
3340 "linux-arm" : true
Original file line number Diff line number Diff line change @@ -2,12 +2,18 @@ name: Build
22
33on : [push]
44
5+ permissions :
6+ contents : read
7+ packages : write
8+
59jobs :
610 build :
711 runs-on : ubuntu-latest
812 steps :
913 - uses : actions/checkout@v4
1014
15+ - uses : docker/setup-buildx-action@v3
16+
1117 - name : Build
1218 run : |
1319 set -eu
Original file line number Diff line number Diff line change 1+ FROM alpine:latest
2+
3+ ENTRYPOINT ["/usr/bin/bob" ]
4+
5+ ADD rel/bob_linux-amd64 /usr/bin/bob
You can’t perform that action at this time.
0 commit comments