Skip to content

Fix bug in replace method #6

Fix bug in replace method

Fix bug in replace method #6

Workflow file for this run

name: Test (alternative) Install Methods
on: push
jobs:
install:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: INSTALL SCRIPT + make
run: |
wget $(curl -s https://api.github.com/repos/$GITHUB_REPOSITORY/releases/latest | grep 'browser_' | cut -d\" -f4 | grep -i install.sh)
chmod +x install.sh
./install.sh --download wget --build make
rm -rf *
- name: INSTALL SCRIPT + cmake
run: |
wget $(curl -s https://api.github.com/repos/$GITHUB_REPOSITORY/releases/latest | grep 'browser_' | cut -d\" -f4 | grep -i install.sh)
chmod +x install.sh
./install.sh --download wget --build cmake
rm -rf *