Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
surapunoyousei committed Oct 14, 2023
1 parent 5f27b1b commit 00a4705
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/deliver-updates-to-floorp-browser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,16 +138,18 @@ jobs:
for line in "${xml_notfound[@]}" ; do echo $line >> update_notfound.xml ; done
for line in "${xml_addon[@]}" ; do echo $line >> update_addon.xml ; done
- name: Copy files normal build
- name: check dir
run: |
if [[ $GHA_BUILD_MACHINE == 'normal' ]]; then
export BUILD_TYPE=`echo "browser"`
export BUILD_TYPE="browser"
echo "BUILD_TYPE=$BUILD_TYPE" >> $GITHUB_ENV
else
export BUILD_TYPE=`echo "lightning"`
export BUILD_TYPE="lightning"
echo "BUILD_TYPE=$BUILD_TYPE" >> $GITHUB_ENV
fi
- name: Copy files normal build
run: |
mkdir -p ${{ env.BUILD_TYPE }}/${{ env.DISPLAY_VERSION }}/${{ inputs.os }}/${{ inputs.arch }}
for dir in $(ls -l ${{ env.BUILD_TYPE }} | grep ^d | awk '{print $9}'); do
echo $dir
Expand Down

0 comments on commit 00a4705

Please sign in to comment.