Skip to content

Make Repository

Make Repository #101

Workflow file for this run

---
name: Make Repository
on:
push:
branches:
- main
- debug
- feature/**
paths:
- "!README.md"
- '.github/workflows/main.yml'
tags:
- "*"
schedule:
- cron: "21 4 * * 0"
permissions:
# Allow creating GitHub release
contents: write
jobs:
pkgbuild:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Makepkg Build and Check
id: makepkg
uses: bodsch/[email protected]
with:
makepkgArgs: "--skippgpcheck --noconfirm"
- name: Print Package Files
run: |
echo "Successfully created the following package archive"
printf '%s\n' "${{ 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 }}