Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: debugging remvoe software action #14

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,21 @@ jobs:
- name: Checkout Push to Registry action
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Maximize build space
uses: ublue-os/remove-unwanted-software@5a8b0374222a6fffddb1be9516b5fece9483bed0 # v8
with:
remove-codeql: true

- name: Setup Just
uses: extractions/setup-just@dd310ad5a97d8e7b41793f8ef055398d51ad4de6 # v2

- name: Check Just Syntax
shell: bash
run: |
set -x
which just
just check

- name: Maximize build space
uses: ublue-os/remove-unwanted-software@517622d6452028f266b7ba4cc9a123b5f58a6b53 # v7
with:
remove-codeql: true

- name: Generate tags
id: generate-tags
shell: bash
Expand Down Expand Up @@ -101,6 +103,8 @@ jobs:
id: build-image
shell: bash
run: |
set -x
which just
just=$(which just)
sudo $just build "${IMAGE_NAME}" "${DEFAULT_TAG}"

Expand Down