ferrumgate-bin/.gitea/workflows/build-publish.yml

21 lines
584 B
YAML
Raw Normal View History

2024-03-02 23:10:46 +01:00
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
2024-03-02 23:24:10 +01:00
uses: edlanglois/pkgbuild-action@v1
2024-03-02 23:10:46 +01:00
- name: Print Package Files
run: |
echo "Successfully created the following package archive"
echo "Package: ${{ steps.makepkg.outputs.pkgfile0 }}"
- name: Upload Package Archive
2024-03-02 23:38:52 +01:00
uses: actions/gitea-release-action@v1
2024-03-02 23:10:46 +01:00
with:
2024-03-02 23:24:10 +01:00
files: ${{ steps.makepkg.outputs.pkgfile0 }}
2024-03-02 23:38:52 +01:00
md5sum: true