mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-31 07:33:28 +00:00
93 lines
3.3 KiB
YAML
93 lines
3.3 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-24.04
|
|
outputs:
|
|
release-version: ${{ steps.version.outputs.version }}
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
|
|
|
- name: Branch check
|
|
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
|
|
run: |
|
|
if [[ "$GITHUB_REF" != "refs/heads/main" ]]; then
|
|
echo "==================================="
|
|
echo "[!] Can only release from the 'main' branch"
|
|
echo "==================================="
|
|
exit 1
|
|
fi
|
|
|
|
- name: Check Release Version
|
|
id: version
|
|
uses: bitwarden/gh-actions/release-version-check@main
|
|
with:
|
|
release-type: ${{ github.event.inputs.release_type }}
|
|
project-type: ts
|
|
file: package.json
|
|
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-24.04
|
|
needs: setup
|
|
steps:
|
|
- name: Download all artifacts
|
|
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
|
|
uses: bitwarden/gh-actions/download-artifacts@main
|
|
with:
|
|
workflow: build.yml
|
|
workflow_conclusion: success
|
|
branch: ${{ github.ref_name }}
|
|
|
|
- name: Dry Run - Download all artifacts
|
|
if: ${{ github.event.inputs.release_type == 'Dry Run' }}
|
|
uses: bitwarden/gh-actions/download-artifacts@main
|
|
with:
|
|
workflow: build.yml
|
|
workflow_conclusion: success
|
|
branch: main
|
|
|
|
- name: Create release
|
|
if: ${{ github.event.inputs.release_type != 'Dry Run' }}
|
|
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 # v1.14.0
|
|
env:
|
|
PKG_VERSION: ${{ needs.setup.outputs.release-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
|