Build Appimage #6
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 Appimage | |
on: | |
workflow_dispatch: | |
concurrency: | |
group: builder | |
cancel-in-progress: true | |
jobs: | |
build_appimage: | |
runs-on: ubuntu-latest | |
timeout-minutes: 1440 | |
steps: | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v4 | |
with: | |
extra-conf: "accept-flake-config = true" | |
- name: Build Appimage via nix bundle | |
run: nix bundle --bundler github:ralismark/nix-appimage github:chaotic-cx/nyx/nyxpkgs-unstable#firedragon | |
- name: Upload Appimage | |
uses: actions/upload-artifact@v3 | |
with: | |
name: FireDragon AppImage | |
path: "*.AppImage" |