Skip to content

Commit

Permalink
Fix run statements
Browse files Browse the repository at this point in the history
  • Loading branch information
hugglesfox committed Sep 18, 2024
1 parent f7cd53b commit dfc85d1
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ jobs:
python-version: 3.12

- name: Install splashkit
run: curl -s https://raw.githubusercontent.com/splashkit/skm/master/install-scripts/skm-install.sh | bash
run: skm linux install
run: skm global install
run: |
curl -s https://raw.githubusercontent.com/splashkit/skm/master/install-scripts/skm-install.sh | bash
skm linux install
skm global install
- name: Checkout splashkit
uses: actions/checkout@v4
Expand All @@ -34,6 +35,7 @@ jobs:
run: sudo apt -y install dotnet-host

- name: Run flipper
run: mkdir -p build
run: cd build
run: python flipper/flipper.py --path flipper ${{ matrix.arch == 'rpi' && '--cs-runtime linux-arm --cpp-prefix arm-linux-gnueabihf-' }}
run: |
mkdir -p build
cd build
python flipper/flipper.py --path flipper ${{ matrix.arch == 'rpi' && '--cs-runtime linux-arm --cpp-prefix arm-linux-gnueabihf-' }}

0 comments on commit dfc85d1

Please sign in to comment.