-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (30 loc) · 913 Bytes
/
package.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
name: Package
# Run workflow on tags starting with v (eg. v2, v1.2.0)
on:
push:
tags:
- v*
jobs:
Package:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Create debpkg structure
run: |
mkdir -p .debpkg/usr/bin/
cp aptrepo .debpkg/usr/bin
- uses: jiro4989/build-deb-action@v2
id: package
with:
package: apt-repo
package_root: ./.debpkg
maintainer: Julian Lemmerich <[email protected]>
version: ${{ github.ref }} # refs/tags/v*.*.*
arch: 'amd64'
depends: 'gpg, dpkg-dev'
desc: 'Create the structure for an apt repository to be hosted by nginx.'
- uses: actions/upload-artifact@v3
with:
name: apt-repo_amd64_${{ github.ref }}.deb
path: ${{steps.package.outputs.file_name}}