mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-31 23:53:51 +00:00
98 lines
3.7 KiB
YAML
98 lines
3.7 KiB
YAML
---
|
|
name: Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
release_type:
|
|
description: 'Release Options'
|
|
required: true
|
|
default: 'Initial Release'
|
|
type: choice
|
|
options:
|
|
- Initial Release
|
|
- Redeploy
|
|
- Dry Run
|
|
|
|
jobs:
|
|
setup:
|
|
name: Setup
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Branch check
|
|
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
|
|
run: |
|
|
if [[ "$GITHUB_REF" != "refs/heads/rc" ]] && [[ "$GITHUB_REF" != "refs/heads/hotfix-rc" ]]; then
|
|
echo "==================================="
|
|
echo "[!] Can only release from the 'rc' or 'hotfix-rc' branches"
|
|
echo "==================================="
|
|
exit 1
|
|
fi
|
|
|
|
- name: Checkout repo
|
|
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
|
|
|
|
- name: Retrieve Directory Connector release version
|
|
id: retrieve-version
|
|
run: |
|
|
PKG_VERSION=$(jq -r .version src/package.json)
|
|
echo "::set-output name=package_version::$PKG_VERSION"
|
|
|
|
- name: Check to make sure Mobile release version has been bumped
|
|
if: ${{ github.event.inputs.release_type == 'Initial Release' }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
latest_ver=$(hub release -L 1 -f '%T')
|
|
latest_ver=${latest_ver:1}
|
|
echo "Latest version: $latest_ver"
|
|
ver=${{ steps.retrieve-version.outputs.package_version }}
|
|
echo "Version: $ver"
|
|
if [ "$latest_ver" = "$ver" ]; then
|
|
echo "Version has not been bumped!"
|
|
exit 1
|
|
fi
|
|
shell: bash
|
|
|
|
- name: Get branch name
|
|
id: branch
|
|
run: |
|
|
BRANCH_NAME=$(basename ${{ github.ref }})
|
|
echo "::set-output name=branch-name::$BRANCH_NAME"
|
|
|
|
- name: Download all artifacts
|
|
uses: bitwarden/gh-actions/download-artifacts@23433be15ed6fd046ce12b6889c5184a8d9c8783
|
|
with:
|
|
workflow: build.yml
|
|
workflow_conclusion: success
|
|
branch: ${{ steps.branch.outputs.branch-name }}
|
|
|
|
- name: Create release
|
|
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
|
|
uses: ncipollo/release-action@40bb172bd05f266cf9ba4ff965cb61e9ee5f6d01 # v1.9.0
|
|
env:
|
|
PKG_VERSION: ${{ steps.retrieve-version.outputs.package_version }}
|
|
with:
|
|
artifacts: "./bwdc-windows-${{ env.PKG_VERSION }}.zip,
|
|
./bwdc-macos-${{ env.PKG_VERSION }}.zip,
|
|
./bwdc-linux-${{ env.PKG_VERSION }}.zip,
|
|
./bwdc-windows-sha256-${{ env.PKG_VERSION }}.txt,
|
|
./bwdc-macos-sha256-${{ env.PKG_VERSION }}.txt,
|
|
./bwdc-linux-sha256-${{ env.PKG_VERSION }}.txt,
|
|
./Bitwarden-Connector-Portable-${{ env.PKG_VERSION }}.exe,
|
|
./Bitwarden-Connector-Installer-${{ env.PKG_VERSION }}.exe,
|
|
./Bitwarden-Connector-Installer-${{ env.PKG_VERSION }}.exe.blockmap,
|
|
./Bitwarden-Connector-${{ env.PKG_VERSION }}-x86_64.AppImage,
|
|
./Bitwarden-Connector-${{ env.PKG_VERSION }}-mac.zip,
|
|
./Bitwarden-Connector-${{ env.PKG_VERSION }}.dmg,
|
|
./Bitwarden-Connector-${{ env.PKG_VERSION }}.dmg.blockmap,
|
|
./latest-linux.yml,
|
|
./latest-mac.yml,
|
|
./latest.yml"
|
|
commit: ${{ github.sha }}
|
|
tag: v${{ env.PKG_VERSION }}
|
|
name: Version ${{ env.PKG_VERSION }}
|
|
body: "<insert release notes here>"
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
draft: true
|