File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 6
6
jobs :
7
7
goreleaser :
8
8
runs-on : macos-latest
9
+ env :
10
+ # Necessary for Docker manifest
11
+ DOCKER_CLI_EXPERIMENTAL : " enabled"
9
12
steps :
13
+ # Docker is not included on macos-latest
14
+ - uses : docker-practice/actions-setup-docker@v1
15
+
10
16
- uses : actions/checkout@v3
11
17
with :
12
18
fetch-depth : 0
19
+
20
+ - name : Set up QEMU
21
+ uses : docker/setup-qemu-action@v1
22
+
23
+ - name : Docker Login
24
+ uses : docker/login-action@v1
25
+ with :
26
+ registry : ghcr.io
27
+ username : ${{ github.repository_owner }}
28
+ password : ${{ secrets.GITHUB_TOKEN }}
29
+
13
30
- uses : actions/setup-go@v3
14
31
with :
15
32
go-version : " ~1.18"
Original file line number Diff line number Diff line change 1
1
FROM alpine
2
2
3
+ # Generated by goreleaser on `goreleaser release`
3
4
ADD coder /opt/coder
4
5
5
6
ENTRYPOINT [ "/opt/coder" , "server" ]
You can’t perform that action at this time.
0 commit comments