Skip to content

Commit

Permalink
various mini-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
drkameleon committed May 22, 2024
1 parent a26392c commit e79a6cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ runs:
fi
echo "EXEFILE=$xpref" >> $GITHUB_ENV
echo "EXEFILE=$xpref" >> "$GITHUB_OUTPUT"
echo "EXEFILE=$xpref" >> $GITHUB_OUTPUT
else
arturo --bundle --as:${{ inputs.target }} ${{ inputs.entry }}
Expand All @@ -61,7 +61,7 @@ runs:
fi
echo "EXEFILE=${{ inputs.target }}" >> $GITHUB_ENV
echo "EXEFILE=${{ inputs.target }}" >> "$GITHUB_OUTPUT"
echo "EXEFILE=${{ inputs.target }}" >> $GITHUB_OUTPUT
fi
if [[ "${{ runner.arch }}" = "ARM64" || "${{ inputs.arch }}" = "arm64" ]]; then
Expand All @@ -72,10 +72,10 @@ runs:
if [ "${{ inputs.version }}" != "" ]; then
echo "VERSION=-${{ inputs.version }}" >> $GITHUB_ENV
echo "VERSION=-${{ inputs.version }}" >> "$GITHUB_OUTPUT"
echo "VERSION=-${{ inputs.version }}" >> $GITHUB_OUTPUT
else
echo "VERSION=" >> $GITHUB_ENV
echo "VERSION=" >> "$GITHUB_OUTPUT"
echo "VERSION=" >> $GITHUB_OUTPUT
fi
if [ "${{ inputs.release }}" = "true" ]; then
Expand Down

0 comments on commit e79a6cb

Please sign in to comment.