-
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.
- Loading branch information
1 parent
23b54ff
commit d197ffd
Showing
1 changed file
with
8 additions
and
8 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 |
---|---|---|
|
@@ -12,25 +12,25 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: sudo apt-get update && sudo apt-get install -y mmdebstrap squashfs-tools dosfstools xorriso isolinux syslinux-efi grub-pc-bin grub-efi-amd64-bin mtools debian-archive-keyring isolinux syslinux | ||
- name: Dotenv Action | ||
uses: falti/[email protected] | ||
id: dotenv | ||
with: | ||
export-variables: true | ||
- name: Set T.A.R.A.L.L.O. Token | ||
uses: "DamianReeves/write-file-action@master" | ||
with: | ||
path: weeedebian/env.txt | ||
write-mode: overwrite | ||
path: ./.env | ||
write-mode: append | ||
contents: | | ||
export TARALLO_URL=${{ secrets.TARALLO_URL }} | ||
export TARALLO_TOKEN=${{ secrets.TARALLO_TOKEN }} | ||
- name: Dotenv Action | ||
uses: falti/[email protected] | ||
id: dotenv | ||
with: | ||
export-variables: true | ||
- name: build amd64 | ||
env: | ||
MISO_ARCH: amd64 | ||
run: sudo ./miso.sh | ||
shell: bash | ||
# i386 CI is disabled for now because I couldn't get QT (either 5 or 6)to work on a modern 32bit release of debian | ||
# i386 CI is disabled because I couldn't get QT (either 5 or 6)to work on a modern 32bit release of debian | ||
#- name: build i386 | ||
# env: | ||
# MISO_ARCH: i386 | ||
|