Skip to content

Add beta release scripts for 2.5.1 which uses the registration key #147

Add beta release scripts for 2.5.1 which uses the registration key

Add beta release scripts for 2.5.1 which uses the registration key #147

Workflow file for this run

name: CI
on:
push:
branches:
- main
workflow_dispatch:
pull_request:
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Test install on Ubuntu
run: |
chmod +x ./install-linux.sh
VANTA_SKIP_REGISTRATION_CHECK=1 VANTA_KEY=FAKEKEY ./install-linux.sh
- name: Check that it's running correctly
run: /var/vanta/vanta-cli status
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Test install on macOS
run: |
chmod +x ./install-macos.sh
VANTA_KEY=FAKEKEY ./install-macos.sh
- name: Check that it's running correctly
run: /usr/local/vanta/vanta-cli status