@@ -2,6 +2,9 @@ name: update2deb
2
2
3
3
# Controls when the workflow will run
4
4
on :
5
+ release :
6
+ types :
7
+ - created
5
8
# Allows you to run this workflow manually from the Actions tab
6
9
workflow_dispatch :
7
10
@@ -14,52 +17,40 @@ jobs:
14
17
15
18
# Steps represent a sequence of tasks that will be executed as part of the job
16
19
steps :
17
-
20
+
21
+ - name : save working directory in variable 'DIR'
22
+ run : echo "DIR=$(pwd)" >> $GITHUB_ENV
23
+
18
24
- name : Clone repo
19
25
run : git clone https://github.com/Crilum/update
20
26
21
27
# Runs a single command using the runners shell
22
28
- name : Prepare for building
23
29
run : |
30
+ LATEST=`curl -s https://api.github.com/repos/Crilum/update/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")' | tr -d 'v'`
24
31
cd update
32
+ mkdir updatedeb && cd updatedeb
25
33
mkdir -p usr/bin/
26
- mv update usr/bin/update
27
- rm CODE_OF_CONDUCT.md
28
- rm install
29
- rm install-macos
30
- rm README.md
31
- rm LICENSE
32
- rm -rf debs
33
- rm -rf Imgs
34
- rm -rf .github
34
+ mv ../update usr/bin/update
35
35
mkdir DEBIAN
36
36
cd DEBIAN
37
- echo "Maintainer: Crilum
38
- Summary: Updates apps/packages/dependencies from apt, pi-apps, flatpak, snapd, homebrew, and npm
39
- Name: update
40
- Description: Small script to update apps from package managers
41
- Version: 1.1.0
42
- License: gpl-3.0
43
- Architecture: all
44
- Provides: update
45
- Priority: optional
46
- Depends: bash
47
- Section:
48
- Recommends:
49
- Conflicts:
50
- Package: update" > control
51
- echo "#!/bin/bash
52
- chmod +x /usr/bin/update
53
- exit 0" > postinst
37
+ wget https://github.com/Crilum/update/raw/main/debian/control
38
+ echo "Version: ${LATEST}" >> control
39
+ wget https://github.com/Crilum/update/raw/main/debian/postinst
54
40
chmod 775 postinst
55
- cd ../
41
+ cd ..
42
+ cd ..
56
43
57
44
# Runs a set of commands using the runners shell
58
45
- name : Run dpkg-deb --build
59
46
run : |
60
- dpkg-deb --build update
61
-
62
- - uses : actions/upload-artifact@v2
47
+ dpkg-deb --build updatedeb/ update_${LATEST}_all.deb
48
+ echo "DEB=$(basename update*.deb)" >> $GITHUB_ENV
49
+
50
+ - name : Upload to release
51
+ uses : docker://gacts/upload-to-release:latest
52
+ env :
53
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
63
54
with :
64
- name : update_latest_all.deb
65
- path : update.deb
55
+ file : ' ${{ env.DIR }}/update/${{ env.DEB }} '
56
+ type : ' application/x-debian-package '
0 commit comments