-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 1.16 KB
/
Copy pathappimage.yml
File metadata and controls
37 lines (34 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Build using Alire and upload an AppImage to the GitHub releases section.
name: AppImage
on: # Run the workflow for each of the following events:
push: # - A branch is pushed or updated.
paths-ignore:
- 'README.md'
pull_request: # - A pull-request is opened or updated.
paths-ignore:
- 'README.md'
workflow_dispatch: # - A manual run of the workflow is requested from the GitHub web interface.
release:
types: [created] # - A release is created.
permissions: write-all
jobs:
release:
name: Continuous
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
target: [client, server]
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'true' # Also checkout recursively the submodules
- name: alr2appimage-action
uses: mgrojo/alr2appimage-action@main
with:
alireVersion: 2.1.0
crateDir: ${{ matrix.target }}
alr2appimageArgs: "--terminal --use-version"
tagName: "${{ github.ref_name }}-continuous-${{ matrix.target }}"
deleteExistent: true