Skip to content

Test building simple packages from AUR. #1

Test building simple packages from AUR.

Test building simple packages from AUR. #1

Workflow file for this run

name: Test building simple packages from AUR.
on:
workflow_dispatch:
inputs:
branch:
description: 'Branch to build'
required: true
default: 'master'
jobs:
build_repository:
runs-on: ubuntu-latest
steps:
# Checkout repository content to run the action directly from the
# repository. This makes sure, that this runs the latest/current version
# of the action, rather than a tagged/released one.
- name: Checkout
uses: actions/checkout@v2
- name: Build Packages
uses: ./ # Use action from the root of this repository
with:
packages: >
aide
calamares
- name: List generated Files
run: ls -1 > ${{ github.workspace }}/files.txt