From b803d41ac7d09ca4c5110484e3db7cd3691b00c4 Mon Sep 17 00:00:00 2001 From: Jordan Acosta Date: Mon, 6 Jan 2025 15:09:59 -0800 Subject: [PATCH] fix: use env vars with for cli flags (#44) --- .github/workflows/nuon.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nuon.yaml b/.github/workflows/nuon.yaml index af21668..e791929 100644 --- a/.github/workflows/nuon.yaml +++ b/.github/workflows/nuon.yaml @@ -11,7 +11,7 @@ defaults: env: NUON_ORG_ID: ${{ secrets.NUON_ORG_ID }} NUON_API_TOKEN: ${{ secrets.NUON_API_TOKEN }} - NUON_APP_CONFIG: ${{ secrets.NUON_APP_CONFIG }} + NUON_FILE: ${{ secrets.NUON_FILE }} NUON_APP_ID: ${{ secrets.NUON_APP_ID }} jobs: @@ -27,7 +27,7 @@ jobs: - name: Sync configs id: sync run: | - nuon apps sync --file $NUON_APP_CONFIG + nuon apps sync working-directory: ./nuon release: runs-on: ubuntu-latest @@ -42,4 +42,4 @@ jobs: - name: Release to installs id: release run: | - nuon components list -a $NUON_APP_ID -j | jq '.[].id' | xargs -n 1 nuon releases create -a $NUON_APP_ID --latest-build -c + nuon components list -j | jq '.[].id' | xargs -n 1 nuon releases create --latest-build -c