ci:check #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: COINES Installer - Linux | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
linux-installer: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install libusb-1.0-0-dev gcc make | |
- name: Create Installer - Linux | |
run: | | |
cd _installer_/Installer_Scripts/Linux_generic | |
sh ./gen_install_script.sh | |
- name: List the files | |
run: | | |
find . -type f -name "*.tar.gz" | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: coines_linux_installer | |
path: ./_installer_/Installer_Scripts/Linux_generic/_installer_linux.tar.gz | |