We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 762d73c commit 5283c73Copy full SHA for 5283c73
.github/workflows/tests.yml
@@ -7,14 +7,18 @@ on:
7
branches: [ "master" ]
8
9
jobs:
10
- build:
11
- name: Build
+ run-scripts:
+ name: Run scripts
12
runs-on: ubuntu-22.04
13
steps:
14
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
15
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
+
16
+ - name: Tweak options to run on GitHub
17
+ run: |
18
+ # Ignore user-specific scripts for GitHub runners
19
+ sed -i 's/add_users.sh//g' scripts/run_order.txt
20
+ sed -i 's/copy_admin_scripts.sh//g' scripts/run_order.txt
21
- # Runs a single command using the runners shell
22
- name: Run the scripts
23
run: |
- sudo bash install.sh
24
+ sudo ./install.sh
0 commit comments