https://github.com/acj/action-abuild
GitHub Action that builds Alpine Linux packages
https://github.com/acj/action-abuild
alpine-linux github-actions
Last synced: over 1 year ago
JSON representation
GitHub Action that builds Alpine Linux packages
- Host: GitHub
- URL: https://github.com/acj/action-abuild
- Owner: acj
- License: mit
- Created: 2019-08-31T23:33:07.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-22T01:33:48.000Z (almost 2 years ago)
- Last Synced: 2025-01-04T08:48:22.313Z (over 1 year ago)
- Topics: alpine-linux, github-actions
- Language: Dockerfile
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# action-abuild
GitHub Action that builds Alpine Linux packages
## Usage
See [action.yml](./action.yml) for comprehensive list of options.
```yaml
name: "Build Alpine package"
on:
schedule:
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out aports
uses: actions/checkout@master
- name: Try building the new release version
uses: acj/action-abuild@v1
with:
PACKAGE_PATH: "main/curl"
RELEASE_VERSION: "1.2.3"
```