Skip to content

Commit

Permalink
Fix dependencies path and issues with secure boot key (#100)
Browse files Browse the repository at this point in the history
Co-authored-by: Noel Miller <[email protected]>
  • Loading branch information
JasonN3 and noelmiller authored Apr 9, 2024
1 parent b669420 commit 02c3b10
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build_container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
job_name: "${{ inputs.parent_job_name }} / ${{ env.JOB_NAME }}"
per_page: 100

- name: Set status
if: inputs.pr && always()
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
job_name: "${{ inputs.parent_job_name }} / ${{ env.JOB_NAME }} (${{ matrix.version }})"
per_page: 100

- name: Set status
if: inputs.pr && always()
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
job_name: "${{ inputs.parent_job_name }} / ${{ env.JOB_NAME }} (${{ matrix.version }})"
per_page: 100

- name: Set status
if: inputs.pr && always()
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
job_name: "${{ inputs.parent_job_name }} / ${{ env.JOB_NAME }} (${{ matrix.version }})"
per_page: 100

- name: Set status
if: inputs.pr && always()
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ runs:
make flatpaks/repo \
FLATPAK_REMOTE_NAME="${{ inputs.flatpak_remote_name }}" \
${{ inputs.flatpak_remote_refs && format('FLATPAK_REMOTE_REFS="{0}"', inputs.flatpak_remote_refs) || ''}} \
${{ inputs.flatpak_remote_refs_dir && format('FLATPAK_REMOTE_REFS_DIR="{0}"', inputs.flatpak_remote_refs_dir) || ''}} \
${{ inputs.flatpak_remote_refs_dir && format('FLATPAK_REMOTE_REFS_DIR="{0}/{1}"', github.workspace, inputs.flatpak_remote_refs_dir) || ''}} \
FLATPAK_REMOTE_URL="${{ inputs.flatpak_remote_url }}" \
IMAGE_NAME="${{ inputs.image_name }}" \
IMAGE_REPO="${{ inputs.image_repo }}" \
Expand Down
4 changes: 2 additions & 2 deletions xorriso/gen_input.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ then
popd > /dev/null
fi

if [ -f $(pwd)/sb_pubkey.der ]
if [ -f "${PWD}/../sb_pubkey.der" ]
then
echo "-map $(pwd)/../sb_pubkey.der sb_pubkey.der"
echo "-map ${PWD}/../sb_pubkey.der sb_pubkey.der"
echo "-chmod 0444 /sb_pubkey.der"
fi

Expand Down

0 comments on commit 02c3b10

Please sign in to comment.