Skip to content

fix rubies path

fix rubies path #5

Workflow file for this run

name: Build for Linux
on:
push:
branches:
- main
pull_request:
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run linux build
run: ./linux-build.sh
- name: Create tar ball
run: |
tar -czf "$HOME/${{ matrix.output }}" --directory=$HOME/rubies/ruby-3.2 .
- name: Upload articact
uses: actions/upload-artifact@master
with:
name: ${{ matrix.output }}
path: $HOME/${{ matrix.output }}