We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db4fa35 commit 2294af8Copy full SHA for 2294af8
.github/workflows/release.yml
@@ -27,6 +27,17 @@ jobs:
27
- name: Check out
28
uses: actions/checkout@v3
29
30
+ - name: Install node and npm
31
+ uses: actions/setup-node@v3
32
+ with:
33
+ node-version: 18
34
+
35
+ - name: Build assets
36
+ run: |
37
+ cd assets &&
38
+ npm i &&
39
+ npm run build
40
41
- name: Build and publish binaries
42
uses: wangyoucao577/go-release-action@v1.34
43
with:
Dockerfile
@@ -11,8 +11,8 @@ ADD . /src
11
RUN apk add build-base git npm
12
13
# Build
14
-RUN go build -o oxigen
15
RUN (cd assets; npm i; npm run build)
+RUN go build -o oxigen
16
17
# -------------
18
# runtime stage
0 commit comments