forked from nodejs/unofficial-builds
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (41 loc) · 1.18 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
name: build
on:
workflow_dispatch:
inputs:
version:
type: string
description: Node.js version to build
required: true
arch:
type: string
description: Architecture to build
default: riscv64
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: prepare
run: bin/prepare-images.sh "fetch-source ${{ github.event.inputs.arch }}"
- name: create build directories
run: mkdir -p build/download build/logs build/staging build/.ccache
- name: build
run: bin/build.sh ${{ github.event.inputs.version }} ${{ github.event.inputs.arch }}
env:
workdir: build
- name: save logs
uses: actions/upload-artifact@v3
if: always()
with:
name: logs
path: build/logs
- name: save download
uses: actions/upload-artifact@v3
with:
name: download
path: build/download
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.event.inputs.version }}
files: build/download/release/${{ github.event.inputs.version }}/*