forked from slowmoVideo/slowmoVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 955 Bytes
/
main.yml
File metadata and controls
35 lines (33 loc) · 955 Bytes
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
on: [ push, pull_request ]
jobs:
build:
runs-on: self-hosted
container:
image: granjow/slowmovideo-build-appimage:2212.1
steps:
- name: CI test
run: |
ls -lah
ls -lah ..
ls -lah /
ls -lah /__e
ls -lah /__w
pwd
git --version
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- run: git config --global --add safe.directory /__w/slowmoVideo/slowmoVideo
- name: gitversion
run: echo "SV_GIT_VERSION=$(git describe HEAD)" >> $GITHUB_ENV
- name: test
run: echo "Building version ${{ env.SV_GIT_VERSION }}"
- name: Build slowmoVideo AppImage
run: |
.github/build-appimage.sh
- name: Upload AppImage
uses: actions/upload-artifact@v3
with:
name: slowmoVideo-${{ env.SV_GIT_VERSION }}
path: build/*.AppImage