From e2510e28a2e6ab13300bfdf51cf314145609c4fd Mon Sep 17 00:00:00 2001 From: Greg Albrecht Date: Thu, 15 Aug 2024 13:55:36 -0700 Subject: [PATCH] fixing working dir --- .github/workflows/pi-gen.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pi-gen.yml b/.github/workflows/pi-gen.yml index bac1d01..dc5df38 100644 --- a/.github/workflows/pi-gen.yml +++ b/.github/workflows/pi-gen.yml @@ -23,8 +23,8 @@ jobs: - name: Build AryaOS image uses: usimd/pi-gen-action@v1 - working-directory: ./pi-gen with: + pi-gen-dir: pi-gen-src # Disable the renaming of the first user during the first boot. This make it so # 'username' stays activated. 'username' must be set for this to work. Please be # aware of the implied security risk of defining a default username and password @@ -41,7 +41,7 @@ jobs: password: ${{ env.FIRST_USER_PASS || 'aryaos415' }} pi-gen-release: ${{ env.PI_GEN_RELEASE || 'AryaOS' }} release: ${{ env.RELEASE || 'bookworm' }} - stage-list: ${{ env.STAGE_LIST || 'stage0 stage1 stage2 ./stage03-base ./stage04-wifi ./stage05-node-red ./stage06-common ./stage07-air ./stage08-sea ./stage09-uas ./stage10-docker' }} + stage-list: ${{ env.STAGE_LIST || 'stage0 stage1 stage2 ./pi-gen/stage03-base ./pi-gen/stage04-wifi ./pi-gen/stage05-node-red ./pi-gen/stage06-common ./pi-gen/stage07-air ./pi-gen/stage08-sea ./pi-gen/stage09-uas ./pi-gen/stage10-docker' }} wpa-country: ${{ env.WPA_COUNTRY || 'US' }} wpa-essid: ${{ env.WPA_ESSID || 'AryaOS-WiFi' }} wpa-password: ${{ env.WPA_PASSWORD || 'aryaos415' }}