-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(ci): cleanup workflows Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com> * fixup! feat(ci): cleanup workflows Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com> * fixup! fixup! feat(ci): cleanup workflows Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com> * fixup! fixup! fixup! feat(ci): cleanup workflows Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com> * use matrices Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com> * change back naming Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com> * cleanup flatpak list Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com> * fixup! use matrices Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com> * naming Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com> * fixup! naming Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com> --------- Signed-off-by: m2 <69128853+m2Giles@users.noreply.github.com>
- Loading branch information
Showing
7 changed files
with
110 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Get Images for Build | ||
description: Get Images for Build | ||
|
||
inputs: | ||
image_flavor: | ||
description: "Types of Image to Build (Bazzite, Desktop, Server)" | ||
required: true | ||
|
||
outputs: | ||
images: | ||
description: "List of Images that will be built" | ||
value: ${{ steps.images.outputs.images }} | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Get Images for Build | ||
id: images | ||
shell: bash | ||
run: | | ||
case "${{ inputs.image_flavor }}" in | ||
"Bazzite") | ||
images='["bazzite", "bazzite-deck"]' | ||
;; | ||
"Desktop") | ||
images='["aurora", "aurora-nvidia", "bluefin", "bluefin-nvidia", "cosmic", "cosmic-nvidia"]' | ||
;; | ||
"Server") | ||
images='["ucore", "ucore-nvidia"]' | ||
esac | ||
echo "images=$images" >> "$GITHUB_OUTPUT" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Install Just | ||
description: Install Just from Github Release | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Install Just | ||
shell: bash | ||
run: | | ||
set -eoux pipefail | ||
while [[ "${JUST_VERSION:-}" =~ null || -z "${JUST_VERSION:-}" ]] | ||
do | ||
JUST_VERSION=$(curl -L https://api.github.com/repos/casey/just/releases/latest | jq -r '.tag_name') | ||
done | ||
curl --retry 3 -sSLO https://github.com/casey/just/releases/download/${JUST_VERSION}/just-${JUST_VERSION}-x86_64-unknown-linux-musl.tar.gz | ||
tar -zxvf just-${JUST_VERSION}-x86_64-unknown-linux-musl.tar.gz -C /tmp just | ||
sudo mv /tmp/just /usr/local/bin/just | ||
rm -f just-${JUST_VERSION}-x86_64-unknown-linux-musl.tar.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters