GitHub Action that builds Alpine Linux packages
See action.yml for comprehensive list of options.
name: "Build Alpine package"
on:
schedule:
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out aports
uses: actions/checkout
- name: Try building the new release version
id: abuild
uses: acj/action-abuild@v1
with:
package_path: "main/curl"
release_version: "1.2.3"
- name: Show where the packages landed
run: echo "Built packages in ${{ steps.abuild.outputs.packages_dir }}"