-
-
Notifications
You must be signed in to change notification settings - Fork 2
57 lines (51 loc) · 1.65 KB
/
CI.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Release VirtualBox Appimage
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
on:
schedule:
- cron: "0 14 * * 4"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build
run: |
APP=virtualbox
wget -q "$(curl -Ls https://api.github.com/repos/mhx/dwarfs/releases/latest | sed 's/[()",{} ]/\n/g' | grep -oi "https.*linux.*x86_64.*xz$" | head -1)" &&
tar fx ./dwarfs*xz &&
sudo mv ./dwarfs*/bin/* /usr/bin/ &&
sudo mv ./dwarfs*/sbin/* /usr/sbin/ &&
sudo rsync -av ./dwarfs*/share/man* /usr/share/man/ || exit 1
chmod +x create-arch-bootstrap.sh create-conty.sh "$APP"-conty-builder.sh
sudo ./create-arch-bootstrap.sh && ./create-conty.sh
mkdir -p tmp/"$APP".AppDir
mv ./conty.sh tmp/"$APP".AppDir/ || exit 1
./"$APP"-conty-builder.sh
mkdir dist
mv *AppImage dist/
- name: Upload artifact
uses: actions/[email protected]
with:
name: VirtualBox-x86_64.AppImage
path: 'dist'
release:
needs: [build]
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v1
with:
name: VirtualBox-x86_64.AppImage
- name: release
uses: marvinpinto/action-automatic-releases@latest
with:
title: Continuous build
automatic_release_tag: continuous
prerelease: false
draft: false
files: |
VirtualBox-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}