diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 7cf5ea1..1089e1b 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -40,6 +40,7 @@ jobs: echo "#########>Creating File<#########" touch .env echo ATLAS_URI: $ATLAS_URI >> .env + echo ATLAS_URI1: ${{ secrets.ATLAS_URI }} >> .env echo "#########>File Created<#########" echo "#########>Reading Content<#########" cat .env @@ -57,6 +58,16 @@ jobs: - run: npm ci + - name: Dotenv Action + # You may pin to the exact commit or the version. + # uses: falti/dotenv-action@1fd84c8ebe23bc2523c13de6cd1ab8a26e6571e5 + uses: falti/dotenv-action@v1.0.4 + with: + log-variables: true + export-variables: true + keys-case: upper + + - run: | echo "____________" cat .env