-
Notifications
You must be signed in to change notification settings - Fork 7
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
Showing
1 changed file
with
6 additions
and
5 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 |
---|---|---|
|
@@ -14,15 +14,16 @@ jobs: | |
|
||
# add a step to copy the pi-gen/config file to pi-gen/.env: | ||
- name: Copy .env file | ||
run: | | ||
ls -al | ||
cp pi-gen/config pi-gen/.env | ||
run: cp pi-gen/config pi-gen/.env | ||
|
||
- name: Load .env file | ||
uses: xom9ikk/[email protected] | ||
with: | ||
path: pi-gen/ | ||
|
||
|
||
- name: Echo env variables | ||
run: env | ||
|
||
- name: Build AryaOS image | ||
uses: usimd/pi-gen-action@v1 | ||
with: | ||
|
@@ -43,7 +44,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 ./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' }} | ||
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' }} | ||
|