Skip to content

Make Repository

Make Repository #28

Workflow file for this run

---
name: Make Repository
on:
push:
branches:
- main
- debug
- feature/**
schedule:
- cron: "20 23 * * 0"
jobs:
pkgbuild:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Makepkg Build and Check
id: makepkg
uses: Pinghigh/pkgbuild-action@v5
with:
makepkgArgs: "--skippgpcheck --noconfirm"
- name: Print Package Files
run: |
echo "Successfully created the following package archive"
echo "Package: ${{ steps.makepkg.outputs.pkgfile0 }}"
# Uncomment to upload the package as an artifact
- name: Upload Package Archive
id: upload_package
uses: actions/upload-artifact@v4
with:
name: ${{ steps.makepkg.outputs.pkgfile0 }}
path: ${{ steps.makepkg.outputs.pkgfile0 }}