1
0
mirror of https://github.com/bitwarden/desktop synced 2025-12-29 06:33:14 +00:00

Moving the push of the MAS artifact to the build workflow to enable manual publishing from TestFlight (#1150)

This commit is contained in:
Joseph Flinn
2021-11-09 07:26:30 -08:00
committed by GitHub
parent 4f77f12552
commit d6c100afeb
2 changed files with 34 additions and 34 deletions

View File

@@ -163,32 +163,3 @@ jobs:
run: |
cd dist
choco push
macos:
name: Deploy MacOS
runs-on: macos-10.15
needs: setup
env:
_PKG_VERSION: ${{ needs.setup.outputs.package_version }}
steps:
- name: Checkout repo
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
- name: Make target directory
run: mkdir -p dist/mas-universal
- name: Download Mac artifact
uses: bitwarden/gh-actions/download-artifacts@23433be15ed6fd046ce12b6889c5184a8d9c8783
with:
workflow: build.yml
workflow_conclusion: success
branch: ${{ needs.setup.outputs.branch-name }}
artifacts: Bitwarden-${{ env._PKG_VERSION }}-universal.pkg
path: ./dist/mas-universal
- name: Deploy to App Store
run: npm run upload:mas
env:
APPLE_ID_USERNAME: ${{ secrets.APPLE_ID_USERNAME }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}