diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f809e72..33d6bf0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,11 +24,16 @@ jobs: - uses: actions/checkout@v2 # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script + - name: Changing Test-Scripts to Executables run: | - echo Add other actions to build, - echo test, and deploy your project. + sudo chmod +x ./builds/tests/compile_test.sh + sudo chmod +x ./builds/tests/after_successCONVERT.sh + + - name: Build Executables + run: + sudo sh ./builds/tests/compile_test.sh linux + + - name: Upload to Github + run: + sudo sh ./builds/tests/after_successCONVERT.sh +