mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-27 11:24:45 +08:00
ci(ui_test): Refactor core of UI tests to use injected browser data (#2178)
Co-authored-by: Jagan <jaganelavarasan@gmail.com>
This commit is contained in:
10
scripts/decrypt_browser_data.sh
Executable file
10
scripts/decrypt_browser_data.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#! /usr/bin/env bash
|
||||
|
||||
# Decrypt the file
|
||||
# --batch to prevent interactive command
|
||||
# --yes to assume "yes" for questions
|
||||
gpg --quiet --batch --yes --decrypt --passphrase="$1" \
|
||||
--output $HOME/browser_data.tar.gz .github/secrets/browser_data.tar.gz.gpg
|
||||
|
||||
# Unzip the tarball
|
||||
tar xzf $HOME/browser_data.tar.gz -C $HOME
|
||||
Reference in New Issue
Block a user