Skip to content

Bump actions/upload-artifact from 5 to 6 #26

Bump actions/upload-artifact from 5 to 6

Bump actions/upload-artifact from 5 to 6 #26

Workflow file for this run

---
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