diff --git a/.github/workflows/npm-grunt.yml b/.github/workflows/npm-grunt.yml index 1d4e33a..c0209b7 100644 --- a/.github/workflows/npm-grunt.yml +++ b/.github/workflows/npm-grunt.yml @@ -33,19 +33,17 @@ jobs: run: | npm install echo name=${{ inputs.name }} > .env - echo bundle=${{ inputs.name }} >> .env + echo bundle=${{ inputs.bundle }} >> .env echo url=${{ inputs.url }} >> .env - cat .env - mv .env output.txt - # node index.js - # mv ${{ inputs.name }}.ipa output.ipa + node index.js + mv ${{ inputs.name }}.ipa output.ipa - name: Upload a Build Artifact uses: actions/upload-artifact@v4.3.4 with: # Artifact name name: "IPA Output" # optional, default is artifact # A file, directory or wildcard pattern that describes what to upload - path: "output.txt" + path: "output.ipa" # The desired behavior if no files are found using the provided path. if-no-files-found: warn