Skip to content

Commit 79a6b0d

Browse files
authored
Update update2deb.yml (Crilum#5)
* Update update2deb.yml * Update update2deb.yml * Update update2deb.yml * Update update2deb.yml * Create control * Create postinst * Update update2deb.yml
1 parent f513d30 commit 79a6b0d

File tree

3 files changed

+38
-33
lines changed

3 files changed

+38
-33
lines changed

.github/workflows/update2deb.yml

+24-33
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: update2deb
22

33
# Controls when the workflow will run
44
on:
5+
release:
6+
types:
7+
- created
58
# Allows you to run this workflow manually from the Actions tab
69
workflow_dispatch:
710

@@ -14,52 +17,40 @@ jobs:
1417

1518
# Steps represent a sequence of tasks that will be executed as part of the job
1619
steps:
17-
20+
21+
- name: save working directory in variable 'DIR'
22+
run: echo "DIR=$(pwd)" >> $GITHUB_ENV
23+
1824
- name: Clone repo
1925
run: git clone https://github.com/Crilum/update
2026

2127
# Runs a single command using the runners shell
2228
- name: Prepare for building
2329
run: |
30+
LATEST=`curl -s https://api.github.com/repos/Crilum/update/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")' | tr -d 'v'`
2431
cd update
32+
mkdir updatedeb && cd updatedeb
2533
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
3535
mkdir DEBIAN
3636
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
5440
chmod 775 postinst
55-
cd ../
41+
cd ..
42+
cd ..
5643
5744
# Runs a set of commands using the runners shell
5845
- name: Run dpkg-deb --build
5946
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 }}
6354
with:
64-
name: update_latest_all.deb
65-
path: update.deb
55+
file: '${{ env.DIR }}/update/${{ env.DEB }}'
56+
type: 'application/x-debian-package'

debian/control

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Maintainer: Crilum
2+
Summary: Updates apps/packages/dependencies from apt, pi-apps, flatpak, snapd, homebrew, and npm
3+
Name: update
4+
Description: Small script to update apps from package managers
5+
License: gpl-3.0
6+
Architecture: all
7+
Provides: update
8+
Priority: optional
9+
Depends: bash
10+
Section: utils
11+
Package: update

debian/postinst

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
chmod +x /usr/bin/update
3+
exit 0

0 commit comments

Comments
 (0)