-
Notifications
You must be signed in to change notification settings - Fork 4
40 lines (38 loc) · 947 Bytes
/
nightly.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
name: Build flashcard-bootstrap
on:
push:
branches: ["master"]
paths-ignore:
- 'README.md'
pull_request:
branches: ["master"]
paths-ignore:
- 'README.md'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: skylyrac/blocksds:slim-latest
name: Build with Docker using BlocksDS
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install needed packages
run: |
apt update
apt install -y clang zip
- name: Make flashcard-bootstrap
run: |
chmod +x build.sh
./build.sh
- name: Prepare for build publishing
run: |
mkdir -p ~/artifacts
cp bootstrap.zip ~/artifacts
- name: Publish build to GH Actions
uses: actions/upload-artifact@v3
with:
path: ~/artifacts/*
name: build