mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-07 09:31:31 +01:00
102 lines
3.7 KiB
YAML
102 lines
3.7 KiB
YAML
name: Release CLI
|
|
run-name: Release CLI ${{ inputs.release_type }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
release_type:
|
|
description: 'Release Options'
|
|
required: true
|
|
default: 'Initial Release'
|
|
type: choice
|
|
options:
|
|
- Initial Release
|
|
- Redeploy
|
|
- Dry Run
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: apps/cli
|
|
|
|
jobs:
|
|
setup:
|
|
name: Setup
|
|
runs-on: ubuntu-22.04
|
|
outputs:
|
|
release-version: ${{ steps.version.outputs.version }}
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
|
|
|
- name: Branch check
|
|
if: ${{ inputs.release_type != 'Dry Run' }}
|
|
run: |
|
|
if [[ "$GITHUB_REF" != "refs/heads/rc" ]] && [[ "$GITHUB_REF" != "refs/heads/hotfix-rc-cli" ]]; then
|
|
echo "==================================="
|
|
echo "[!] Can only release from the 'rc' or 'hotfix-rc-cli' branches"
|
|
echo "==================================="
|
|
exit 1
|
|
fi
|
|
|
|
- name: Check Release Version
|
|
id: version
|
|
uses: bitwarden/gh-actions/release-version-check@main
|
|
with:
|
|
release-type: ${{ inputs.release_type }}
|
|
project-type: ts
|
|
file: apps/cli/package.json
|
|
monorepo: true
|
|
monorepo-project: cli
|
|
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-22.04
|
|
needs: setup
|
|
steps:
|
|
- name: Download all Release artifacts
|
|
if: ${{ inputs.release_type != 'Dry Run' }}
|
|
uses: bitwarden/gh-actions/download-artifacts@main
|
|
with:
|
|
workflow: build-cli.yml
|
|
path: apps/cli
|
|
workflow_conclusion: success
|
|
branch: ${{ github.ref_name }}
|
|
|
|
- name: Dry Run - Download all artifacts
|
|
if: ${{ inputs.release_type == 'Dry Run' }}
|
|
uses: bitwarden/gh-actions/download-artifacts@main
|
|
with:
|
|
workflow: build-cli.yml
|
|
path: apps/cli
|
|
workflow_conclusion: success
|
|
branch: main
|
|
|
|
- name: Create release
|
|
if: ${{ inputs.release_type != 'Dry Run' }}
|
|
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 # v1.14.0
|
|
env:
|
|
PKG_VERSION: ${{ needs.setup.outputs.release-version }}
|
|
with:
|
|
artifacts: "apps/cli/bw-oss-windows-${{ env.PKG_VERSION }}.zip,
|
|
apps/cli/bw-oss-windows-sha256-${{ env.PKG_VERSION }}.txt,
|
|
apps/cli/bw-windows-${{ env.PKG_VERSION }}.zip,
|
|
apps/cli/bw-windows-sha256-${{ env.PKG_VERSION }}.txt,
|
|
apps/cli/bw-oss-macos-${{ env.PKG_VERSION }}.zip,
|
|
apps/cli/bw-oss-macos-sha256-${{ env.PKG_VERSION }}.txt,
|
|
apps/cli/bw-macos-${{ env.PKG_VERSION }}.zip,
|
|
apps/cli/bw-macos-sha256-${{ env.PKG_VERSION }}.txt,
|
|
apps/cli/bw-oss-linux-${{ env.PKG_VERSION }}.zip,
|
|
apps/cli/bw-oss-linux-sha256-${{ env.PKG_VERSION }}.txt,
|
|
apps/cli/bw-linux-${{ env.PKG_VERSION }}.zip,
|
|
apps/cli/bw-linux-sha256-${{ env.PKG_VERSION }}.txt,
|
|
apps/cli/bitwarden-cli.${{ env.PKG_VERSION }}.nupkg,
|
|
apps/cli/bw_${{ env.PKG_VERSION }}_amd64.snap,
|
|
apps/cli/bw-snap-sha256-${{ env.PKG_VERSION }}.txt,
|
|
apps/cli/bitwarden-cli-${{ env.PKG_VERSION }}-npm-build.zip"
|
|
commit: ${{ github.sha }}
|
|
tag: cli-v${{ env.PKG_VERSION }}
|
|
name: CLI v${{ env.PKG_VERSION }}
|
|
body: "<insert release notes here>"
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
draft: true
|