Aggiunta workflow.
Build and publish / pkgbuild (push) Has been cancelled Details

This commit is contained in:
Emiliano Vavassori 2024-03-02 23:10:46 +01:00
parent 9da9f20daa
commit 44065bb002
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
name: Build and publish
on: [push, pull_request]
jobs:
pkgbuild:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install makepkg
uses: edlanglois/pkgbuild-action@v1
id: makepkg
- name: Print Package Files
run: |
echo "Successfully created the following package archive"
echo "Package: ${{ steps.makepkg.outputs.pkgfile0 }}"
- name: Upload Package Archive
uses: actions/upload-artifact@v2
with:
path: ${{ steps.makepkg.outputs.pkgfile0 }}