ferrumgate-bin/.gitea/workflows/build-publish.yml
Emiliano Vavassori 9e51efc12c
Some checks failed
Build and publish / pkgbuild (push) Failing after 2m50s
Nuovo pacchetto per rilascio.
2024-03-02 23:34:02 +01:00

20 lines
563 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: akkuman/gitea-release-action@v1
with:
files: ${{ steps.makepkg.outputs.pkgfile0 }}