Skip to content

Notifications can be sent in case of terminated Relationships (#286) #267

Notifications can be sent in case of terminated Relationships (#286)

Notifications can be sent in case of terminated Relationships (#286) #267

Workflow file for this run

name: Publish
on:
push:
branches: [main, release/**]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- uses: actions/setup-node@v4
- name: install yq
run: sudo wget https://github.com/mikefarah/yq/releases/download/v4.25.2/yq_linux_amd64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq
- name: Deploy to gh-pages
run: bash .ci/build-and-publish.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}