1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-06 12:16:10 +02:00
bitwarden-browser/.github/workflows/brew-bump-desktop.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.1 KiB
YAML
Raw Normal View History

2022-06-20 18:23:11 +02:00
---
name: Bump Desktop Cask
on:
push:
tags:
- desktop-v**
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
update-desktop-cask:
name: Update Bitwarden Desktop Cask
runs-on: macos-11
steps:
- name: Login to Azure
uses: Azure/login@92a5484dfaf04ca78a94597f4f19fea633851fa2 # v1.4.7
2022-06-20 18:23:11 +02:00
with:
creds: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}
2022-06-20 18:23:11 +02:00
- name: Retrieve secrets
id: retrieve-secrets
2023-11-08 19:08:34 +01:00
uses: bitwarden/gh-actions/get-keyvault-secrets@main
with:
keyvault: "bitwarden-ci"
secrets: "brew-bump-workflow-pat"
2022-06-20 18:23:11 +02:00
- name: Update Homebrew cask
uses: macauley/action-homebrew-bump-cask@445c42390d790569d938f9068d01af39ca030feb # v1.0.0
2022-06-20 18:23:11 +02:00
with:
# Required, custom GitHub access token with the 'public_repo' and 'workflow' scopes
token: ${{ steps.retrieve-secrets.outputs.brew-bump-workflow-pat }}
org: bitwarden
tap: Homebrew/homebrew-cask
cask: bitwarden
tag: ${{ github.ref }}
revision: ${{ github.sha }}
force: true
2022-06-20 18:23:11 +02:00
dryrun: true