Add events committee to main branch #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Widgets to Mainnet - Events | |
on: | |
pull_request: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
deploy-widgets: | |
runs-on: ubuntu-latest | |
name: Deploy ( or diff from PR ) | |
defaults: | |
run: | |
working-directory: ./instances/events-committee.near | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
npm ci | |
- name: Set replacements | |
id: set_replacements | |
run: | | |
echo "replacements=$(jq -r '[to_entries[] | .["find"] = "${" + .key + "}" | .["replace"] = .value | del(.key, .value), {"find": "${REPL_POSTHOG_API_KEY}", "replace": "'$POSTHOG_API_KEY'"}]' aliases.mainnet.json | tr -d "\n\r")" >> $GITHUB_OUTPUT | |
- name: Replace placeholders | |
uses: flcdrg/replace-multiple-action@v1 | |
with: | |
files: "**/*.jsx" | |
find: "${{ steps.set_replacements.outputs.replacements }}" | |
prefix: "(^|.*)" | |
suffix: "($|.*)" | |
- name: Install bos CLI | |
run: | | |
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/FroVolod/bos-cli-rs/releases/download/v0.3.6/bos-cli-installer.sh | sh | |
- name: Dry run deploying widgets | |
run: | | |
bos components diff events-commitee.near network-config mainnet |