-
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
6a0e668
commit a9bc4ce
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -35,15 +35,15 @@ jobs: | |
echo name=${{ inputs.name }} > .env | ||
echo bundle=${{ inputs.bundle }} >> .env | ||
echo url=${{ inputs.url }} >> .env | ||
node index.js | ||
mv ${{ inputs.name }}.ipa output.ipa | ||
node test.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.ipa" | ||
path: ".env" | ||
# The desired behavior if no files are found using the provided path. | ||
if-no-files-found: warn | ||
|
||
|