mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 02:47:56 +01:00
Automatically determine Flatpak dependencies (#86)
Co-authored-by: Noel Miller <noelmiller@protonmail.com>
This commit is contained in:
parent
f2305bbaf8
commit
b5c953d8d3
9 changed files with 88 additions and 12 deletions
5
.github/workflows/build_container.yml
vendored
5
.github/workflows/build_container.yml
vendored
|
|
@ -12,9 +12,8 @@ jobs:
|
|||
build-container:
|
||||
if: >
|
||||
github.event_name == 'push' ||
|
||||
github.event_name == 'issue_comment' ||
|
||||
( github.event_name == 'pull_request' &&
|
||||
contains(github.event.pull_request.labels.*.name, 'auto-test') )
|
||||
github.event_name == 'issue_comment' ||
|
||||
github.event_name == 'workflow_dispatch'
|
||||
name: Build Container Image
|
||||
env:
|
||||
JOB_NAME: Build Container Image
|
||||
|
|
|
|||
16
.github/workflows/build_iso.yml
vendored
16
.github/workflows/build_iso.yml
vendored
|
|
@ -81,6 +81,22 @@ jobs:
|
|||
sha: ${{ env.sha }}
|
||||
targetUrl: ${{ steps.jobs.outputs.html_url }}
|
||||
|
||||
- name: Free Disk Space (Ubuntu)
|
||||
uses: jlumbroso/free-disk-space@main
|
||||
with:
|
||||
# this might remove tools that are actually needed,
|
||||
# if set to "true" but frees about 6 GB
|
||||
tool-cache: false
|
||||
|
||||
# all of these default to true, but feel free to set to
|
||||
# "false" if necessary for your workflow
|
||||
android: true
|
||||
dotnet: true
|
||||
haskell: true
|
||||
large-packages: true
|
||||
docker-images: true
|
||||
swap-storage: true
|
||||
|
||||
- name: Lowercase Registry
|
||||
id: registry_case
|
||||
uses: ASzc/change-string-case-action@v6
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue