We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b05014 commit eae0df3Copy full SHA for eae0df3
1 file changed
.github/workflows/build.yml
@@ -29,7 +29,7 @@ on:
29
30
jobs:
31
build-smart-apps:
32
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-latest
33
strategy:
34
matrix:
35
arch:
@@ -47,9 +47,9 @@ jobs:
47
- name: ⬇️ install xmake
48
shell: bash
49
run: |
50
- sudo add-apt-repository ppa:xmake-io/xmake
51
- sudo apt update
52
- sudo apt install xmake
+ wget -q https://github.com/xmake-io/xmake/releases/download/v2.8.7/xmake-v2.8.7.gz.run
+ sudo chmod 777 ./xmake-v2.8.7.gz.run
+ ./xmake-v2.8.7.gz.run
53
54
- name: 👷 build
55
0 commit comments