1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Workflow corrections (#17392)

Co-authored-by: Amy Galles <9685081+AmyLGalles@users.noreply.github.com>
This commit is contained in:
Matt Andreko
2025-11-19 14:15:12 -05:00
committed by GitHub
parent de42cf303f
commit 9ee4fd0e44
3 changed files with 6 additions and 6 deletions

View File

@@ -627,7 +627,7 @@ jobs:
if: ${{ needs.setup.outputs.has_secrets == 'true' }}
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: Bitwarden-Installer-${{ env._PACKAGE_VERSION }}..exe
name: Bitwarden-Installer-${{ env._PACKAGE_VERSION }}.exe
path: apps/desktop/dist/nsis-web/Bitwarden-Installer-${{ env._PACKAGE_VERSION }}.exe
if-no-files-found: error

View File

@@ -206,7 +206,7 @@ jobs:
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Get Node version
id: retrieve-node-version
working-directory: ./

View File

@@ -336,7 +336,7 @@ jobs:
ruby-version: '3.4.7'
bundler-cache: false
working-directory: apps/desktop
- name: Install Fastlane
working-directory: apps/desktop
run: gem install fastlane
@@ -377,15 +377,15 @@ jobs:
echo "📦 Publishing build $BUILD_NUMBER to Mac App Store"
IS_DRY_RUN="false"
fi
echo "📝 Release notes (${#CHANGELOG} chars): ${CHANGELOG:0:100}..."
# Validate changelog length (App Store limit is 4000 chars)
if [ ${#CHANGELOG} -gt 4000 ]; then
echo "❌ Release notes too long: ${#CHANGELOG} characters (max 4000)"
exit 1
fi
fastlane publish --verbose \
app_version:"${_PKG_VERSION}" \
build_number:"$BUILD_NUMBER" \