This commit is contained in:
parent
9da9f20daa
commit
44065bb002
19
.gitea/workflows/build-publish.yml
Normal file
19
.gitea/workflows/build-publish.yml
Normal 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 }}
|
Loading…
Reference in New Issue
Block a user