test new actions layout
This commit is contained in:
parent
193fafdade
commit
8fefdb205d
4 changed files with 26 additions and 11 deletions
4
.github/workflows/android.yml
vendored
4
.github/workflows/android.yml
vendored
|
|
@ -1,9 +1,7 @@
|
|||
name: "Build APK"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["main"]
|
||||
tags: ["*"]
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
21
.github/workflows/build.yml
vendored
Normal file
21
.github/workflows/build.yml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
name: "Build Artifacts"
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches: ["main"]
|
||||
tags: ["*"]
|
||||
jobs:
|
||||
exe:
|
||||
uses: ./.github/workflows/build-exe.yml
|
||||
|
||||
apk:
|
||||
uses: ./.github/workflows/build-apk.yml
|
||||
|
||||
flatpak:
|
||||
uses: ./.github/workflows/build-flatpak.yml
|
||||
|
||||
publish:
|
||||
needs: [exe, apk, flatpak]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "all done"
|
||||
8
.github/workflows/flatpak.yml
vendored
8
.github/workflows/flatpak.yml
vendored
|
|
@ -1,9 +1,7 @@
|
|||
name: "Build Flatpaks"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["main"]
|
||||
tags: ["*"]
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
|
@ -31,10 +29,10 @@ jobs:
|
|||
run: nix build .#flatpak
|
||||
|
||||
- name: Rename flatpak
|
||||
run: mv result/nexus.federated.Nexus.flatpak nexus.federated.Nexus-${{ matrix.arch }}.flatpak
|
||||
run: mv result/nexus.federated.Nexus.flatpak result/nexus.federated.Nexus-${{ matrix.arch }}.flatpak
|
||||
|
||||
- name: Upload installer artifact
|
||||
uses: actions/upload-artifact@v7
|
||||
with:
|
||||
path: nexus.federated.Nexus-${{ matrix.arch }}.flatpak
|
||||
path: result/nexus.federated.Nexus-${{ matrix.arch }}.flatpak
|
||||
archive: false
|
||||
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
|
|
@ -1,9 +1,7 @@
|
|||
name: "Build EXE"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["main"]
|
||||
tags: ["*"]
|
||||
workflow_call:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue