mirror of https://github.com/bitwarden/cli.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
167 lines
5.1 KiB
167 lines
5.1 KiB
--- |
|
name: Release |
|
|
|
on: |
|
workflow_dispatch: |
|
|
|
jobs: |
|
setup: |
|
name: Setup |
|
runs-on: ubuntu-20.04 |
|
outputs: |
|
package_version: ${{ steps.retrieve-version.outputs.package_version }} |
|
steps: |
|
- name: Branch check |
|
run: | |
|
if [[ "$GITHUB_REF" != "refs/heads/rc" ]]; then |
|
echo "===================================" |
|
echo "[!] Can only release from rc branch" |
|
echo "===================================" |
|
exit 1 |
|
fi |
|
|
|
- name: Checkout repo |
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # 2.3.4 |
|
with: |
|
ref: rc |
|
|
|
- name: Retrieve CLI release version |
|
id: retrieve-version |
|
run: | |
|
PKG_VERSION=$(jq -r .version package.json) |
|
echo "::set-output name=package_version::$PKG_VERSION" |
|
|
|
- name: Check to make sure CLI release version has been bumped |
|
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: Download all artifacts |
|
uses: bitwarden/gh-actions/download-artifacts@23433be15ed6fd046ce12b6889c5184a8d9c8783 |
|
with: |
|
workflow: build.yml |
|
workflow_conclusion: success |
|
branch: rc |
|
|
|
- name: Create release |
|
uses: ncipollo/release-action@95215a3cb6e6a1908b3c44e00b4fdb15548b1e09 # v2.8.5 |
|
env: |
|
PKG_VERSION: ${{ steps.retrieve-version.outputs.package_version }} |
|
with: |
|
artifacts: "bw-windows-${{ env.PKG_VERSION }}.zip, |
|
bw-windows-sha256-${{ env.PKG_VERSION }}.txt, |
|
bw-macos-${{ env.PKG_VERSION }}.zip, |
|
bw-macos-sha256-${{ env.PKG_VERSION }}.txt, |
|
bw-linux-${{ env.PKG_VERSION }}.zip, |
|
bw-linux-sha256-${{ env.PKG_VERSION }}.txt, |
|
bitwarden-cli.${{ env.PKG_VERSION }}.nupkg, |
|
bw_${{ env.PKG_VERSION }}_amd64.snap, |
|
bw-snap-sha256-${{ env.PKG_VERSION }}.txt" |
|
commit: ${{ github.sha }} |
|
tag: v${{ env.PKG_VERSION }} |
|
name: Version ${{ env.PKG_VERSION }} |
|
body: "<insert release notes here>" |
|
token: ${{ secrets.GITHUB_TOKEN }} |
|
draft: true |
|
|
|
|
|
snap: |
|
name: Deploy Snap |
|
runs-on: ubuntu-20.04 |
|
needs: setup |
|
env: |
|
_PKG_VERSION: ${{ needs.setup.outputs.package_version }} |
|
steps: |
|
- name: Checkout repo |
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 |
|
with: |
|
ref: 'rc' |
|
|
|
- name: Install Snapcraft |
|
uses: samuelmeuli/action-snapcraft@10d7d0a84d9d86098b19f872257df314b0bd8e2d # v1.2.0 |
|
with: |
|
snapcraft_token: ${{ secrets.SNAP_TOKEN }} |
|
|
|
- name: Download artifacts |
|
uses: bitwarden/gh-actions/download-artifacts@23433be15ed6fd046ce12b6889c5184a8d9c8783 |
|
with: |
|
workflow: build.yml |
|
workflow_conclusion: success |
|
branch: rc |
|
artifacts: bw_${{ env._PKG_VERSION }}_amd64.snap |
|
|
|
- name: Test |
|
run: ls -alht |
|
|
|
- name: Publish Snap & logout |
|
run: | |
|
snapcraft push bw_${{ env._PKG_VERSION }}_amd64.snap --release stable |
|
snapcraft logout |
|
|
|
|
|
choco: |
|
name: Deploy Choco |
|
runs-on: windows-2019 |
|
needs: setup |
|
env: |
|
_PKG_VERSION: ${{ needs.setup.outputs.package_version }} |
|
steps: |
|
- name: Checkout repo |
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 |
|
with: |
|
ref: 'rc' |
|
|
|
- name: Setup Chocolatey |
|
run: choco apikey --key $env:CHOCO_API_KEY --source https://push.chocolatey.org/ |
|
env: |
|
CHOCO_API_KEY: ${{ secrets.CHOCO_API_KEY }} |
|
|
|
- name: Download artifacts |
|
uses: bitwarden/gh-actions/download-artifacts@23433be15ed6fd046ce12b6889c5184a8d9c8783 |
|
with: |
|
workflow: build.yml |
|
workflow_conclusion: success |
|
branch: rc |
|
artifacts: bitwarden-cli.${{ env._PKG_VERSION }}.nupkg |
|
|
|
- name: Push to Chocolatey |
|
shell: pwsh |
|
run: choco push |
|
|
|
|
|
npm: |
|
name: Publish NPM |
|
runs-on: ubuntu-20.04 |
|
needs: setup |
|
steps: |
|
- name: Checkout repo |
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 |
|
with: |
|
ref: 'rc' |
|
|
|
- name: Download artifacts |
|
uses: bitwarden/gh-actions/download-artifacts@23433be15ed6fd046ce12b6889c5184a8d9c8783 |
|
with: |
|
workflow: build.yml |
|
workflow_conclusion: success |
|
branch: rc |
|
artifacts: bitwarden-cli-${{ env._PACKAGE_VERSION }}-npm-build.zip |
|
|
|
- name: Setup NPM |
|
run: | |
|
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc |
|
env: |
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
|
|
|
- name: Publish NPM |
|
run: npm publish --access public
|
|
|