Update build.yaml #17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: create sample script | |
run: | | |
mkdir -p package | |
# mkdir -p .debpkg/usr/lib/samplescript | |
# echo -e "echo sample" > .debpkg/usr/bin/samplescript | |
# chmod +x .debpkg/usr/bin/samplescript | |
# echo -e "a=1" > .debpkg/usr/lib/samplescript/samplescript.conf | |
# # create DEBIAN directory if you want to add other pre/post scripts | |
# mkdir -p .debpkg/DEBIAN | |
# echo -e "echo postinst" > .debpkg/DEBIAN/postinst | |
# chmod +x .debpkg/DEBIAN/postinst | |
- uses: jiro4989/build-deb-action@v3 | |
id: build_deb | |
with: | |
package: ufw-applications | |
package_root: package | |
maintainer: ${{ github.repository_owner }} | |
version: ${{ github.ref }} # refs/tags/v*.*.* | |
arch: 'all' | |
depends: 'ufw' | |
desc: 'Extra UFW app profiles' | |
homepage: ${{ github.server_url }}/${{ github.repository }} | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: ${{ steps.build_deb.outputs.file_name }} | |
generate_release_notes: true | |
make_latest: true | |
# - name: Add to repo | |
# run: | | |
# curl -u "${{ secrets.APT_CREDENTIALS }}" -H "Content-Type: multipart/form-data" --data-binary "@${{ steps.build_deb.outputs.file_name }}" "https://repo.andrew-stclair.com/repository/apt-hosted/" |