Skip to content

Commit

Permalink
wait
Browse files Browse the repository at this point in the history
  • Loading branch information
ewancg committed Oct 22, 2022
1 parent b7e9528 commit a7c0059
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
# Deployment finalizing
if [ "${{ runner.os }}" == "Windows" ]; then
7z a -tzip "${artifact_name}" "${PACKAGE}"
cp "${artifact_name}" package-result-${{ matrix.config.target_arch }}.zip
cp "${artifact_name}" output.zip
elif [ "${{ runner.os }}" == "macOS" ]; then
pushd "${PACKAGE}"
Expand Down Expand Up @@ -225,8 +225,8 @@ jobs:
if: ${{ runner.os == 'Windows' }}
uses: actions/upload-artifact@v3
with:
name: package-result
path: "package-result-${{ matrix.config.target_arch }}.zip"
name: package-result-${{ matrix.config.target_arch }}.zip
path: "output.zip"

- name: Release
if: steps.identify-build.outputs.release == 'true'
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
- name: Import Artifact
uses: actions/download-artifact@v3
with:
name: package-result
name: package-result-${{ matrix.config.target_arch }}.zip

- name: Create Installer
shell: bash
Expand All @@ -274,11 +274,10 @@ jobs:
if [ "${{ matrix.config.target_arch }}" == "x86" ]; then
export ARCH="x86"
export PLATFORM_ABBR="${PLATFORM_ABBR}-x86"
export FIND_EXPR="*-x86.zip"
else
export ARCH="x64"
export FIND_EXPR="*.zip"
fi
export FIND_EXPR="*.zip"
7z x $(find . -type f -name "${FIND_EXPR}")
Expand Down

0 comments on commit a7c0059

Please sign in to comment.