Merge branch 'main' of https://github.com/Space-Eternity-3/SE3-Launcher #696
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
name: "Build for Linux" | |
on: | |
push: | |
pull_request: | |
jobs: | |
build-for-linux: | |
name: Build | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Install Node" | |
uses: actions/setup-node@v4 | |
- name: Install deps and build | |
run: | | |
npm i | |
npm run build:linux | |
- uses: actions/upload-artifact@v4 | |
name: Upload deb build | |
with: | |
name: "SE3-Launcher-linux-deb" | |
path: | | |
dist/*.deb | |
- uses: actions/upload-artifact@v4 | |
name: Upload rpm build | |
with: | |
name: "SE3-Launcher-linux-rpm" | |
path: | | |
dist/*.rpm | |
- uses: actions/upload-artifact@v4 | |
name: Upload tar.gz build | |
with: | |
name: "SE3-Launcher-linux-tar.gz" | |
path: | | |
dist/*.tar.gz | |
- uses: actions/upload-artifact@v4 | |
name: Upload AppImage build | |
with: | |
name: "SE3-Launcher-linux-AppImage" | |
path: | | |
dist/*.AppImage |