Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.2 KB

README.md

File metadata and controls

49 lines (36 loc) · 1.2 KB

Test Rebol installer

Rebol Install Action

This Action can install Rebol to a virtual machine of GitHub Actions.

Usage

Include this in your workflow:

 - uses: oldes/install-rebol@v3.18.0

These inputs are allowed:

  • version -- an available Rebol release version (for example: 3.18.0) Default: empty; installs Rebol version 3.18.0.
  • product -- one of available product build types (base, core or bulk) Default: empty; installs the core version.

Working Example

name: Rebol Demo

on:
  push:
    branches:
      - master

jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: ["ubuntu-latest", "windows-latest", "macos-latest"]
    steps:
    - uses: actions/checkout@v3
    - uses: oldes/install-rebol@v3.18.0
    - name: Test Rebol
      run: ./rebol3 -v
      shell: bash

Real life usage example can be seen for example at this Build Rebol workflow.