-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (36 loc) · 911 Bytes
/
build.yml
File metadata and controls
42 lines (36 loc) · 911 Bytes
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
42
---
name: Build repo packages
on:
pull_request: {}
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4'
bundler-cache: true
- name: Run build script
run: bundle exec rake vox:build
- name: openvox8-release
uses: actions/upload-artifact@v6
with:
name: openvox8-release
path: openvox8-release/output/
retention-days: 7
overwrite: true
if-no-files-found: error
- name: openvox7-release
uses: actions/upload-artifact@v6
with:
name: openvox7-release
path: openvox7-release/output/
retention-days: 7
overwrite: true
if-no-files-found: error