Created
June 7, 2022 09:05
-
-
Save shalithasuranga/305bfce2e8a10c8a6a2953dc60e3fdde to your computer and use it in GitHub Desktop.
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
jobs: | |
build-linux-arm64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Run | |
uses: uraimo/run-on-arch-action@v2 | |
id: build-package | |
with: | |
arch: aarch64 | |
distro: ubuntu20.04 | |
install: | | |
apt-get update | |
apt-get install -y \ | |
libwebkit2gtk-4.0-37 \ | |
libayatana-appindicator3-1 \ | |
dbus-x11 \ | |
at-spi2-core \ | |
xvfb | |
githubToken: ${{ github.token }} | |
run: | | |
ls | |
chmod +x neutralino-linux_arm64 | |
export DISPLAY=:1 | |
xvfb-run ./neutralino-linux_arm64 --load-dir-res |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment