Emiliano Vavassori
ac031bfdef
Some checks failed
Build and publish / pkgbuild (push) Failing after 3m11s
21 lines
602 B
YAML
21 lines
602 B
YAML
name: Build and publish
|
|
on: [push, pull_request]
|
|
jobs:
|
|
pkgbuild:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Install makepkg
|
|
id: makepkg
|
|
uses: edlanglois/pkgbuild-action@v1
|
|
- name: Print Package Files
|
|
run: |
|
|
echo "Successfully created the following package archive"
|
|
echo "Package: ${{ steps.makepkg.outputs.pkgfile0 }}"
|
|
- name: Upload Package Archive
|
|
uses: https://gitea.com/actions/gitea-release-action@v1
|
|
with:
|
|
files: ${{ steps.makepkg.outputs.pkgfile0 }}
|
|
md5sum: true
|