-
Notifications
You must be signed in to change notification settings - Fork 46
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
1 parent
f2f5195
commit bc0d38a
Showing
1 changed file
with
4 additions
and
6 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 |
---|---|---|
|
@@ -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/[email protected] | ||
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 | ||
|
||
|