-
Notifications
You must be signed in to change notification settings - Fork 4
58 lines (46 loc) · 1.75 KB
/
deploy-apprepo-prod.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
58
name: Deploy the build to the apprepo (PROD)
on:
push:
branches:
- main
workflow_dispatch: ~
schedule:
- cron: "0 0 1-7,15-21 * 3"
env:
DOCKER_BUILDKIT: 1
AUTHENTICATION: "${{ secrets.PROD_AUTHENTICATION }}"
TOKEN: "${{ secrets.PROD_TOKEN }}"
PACKAGE: ${{ secrets.PROD_PACKAGE }}
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
# - name: preparation
# run: |
# mkdir --parents ./dist
# mkdir --parents ./app/.config/apprepo
# echo "[user]" > ./app/.config/apprepo/default.conf
# echo "token = ${AUTHENTICATION}" >> ./app/.config/apprepo/default.conf
# echo "${{ github.event.repository.name }}"
- name: build
run: |
docker-compose -f docker-compose.yaml build --no-cache --progress=plain
docker-compose -f docker-compose.yaml run appimage make all
# - name: deploy
# run: |
# docker-compose -f docker-compose.yaml run appimage /bin/sh -c \
# '/root/bin/Apprepo.AppImage upload /root/`ls /root/ | grep AppImage | head -n 1` --version-description=`date +"%d-%m-%Y"` --version-token=${TOKEN} --version-name="latest" --version-skip-check '
- name: release latest build
uses: andelf/nightly-release@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: latest
name: ${{ github.event.repository.name }} latest build'
body: 'This repo provides the AppImage build only. To get the application release notes please visit the home page of the app itself.'
prerelease: true
files: |
./app/*.AppImage