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"
|
name: "Build APK"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_call:
|
||||||
branches: ["main"]
|
|
||||||
tags: ["*"]
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
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"
|
name: "Build Flatpaks"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_call:
|
||||||
branches: ["main"]
|
|
||||||
tags: ["*"]
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
@ -31,10 +29,10 @@ jobs:
|
||||||
run: nix build .#flatpak
|
run: nix build .#flatpak
|
||||||
|
|
||||||
- name: Rename 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
|
- name: Upload installer artifact
|
||||||
uses: actions/upload-artifact@v7
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
path: nexus.federated.Nexus-${{ matrix.arch }}.flatpak
|
path: result/nexus.federated.Nexus-${{ matrix.arch }}.flatpak
|
||||||
archive: false
|
archive: false
|
||||||
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
|
|
@ -1,9 +1,7 @@
|
||||||
name: "Build EXE"
|
name: "Build EXE"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_call:
|
||||||
branches: ["main"]
|
|
||||||
tags: ["*"]
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue