Skip to content

Update backup/restore scripts. #7

Update backup/restore scripts.

Update backup/restore scripts. #7

Workflow file for this run

name: Deploy Feldera Pipeline
on:
push:
branches:
- main
paths:
- 'feldera/**'
- '.github/workflows/feldera.yml'
- 'Cargo.lock'
- 'Cargo.toml'
permissions:
contents: read
jobs:
deploy-pipeline:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # repo checkout
- name: Setup rust toolchain
run: |
rustup update stable
rustup default stable
rustup set profile minimal
- name: Rust Cache # cache the rust build artefacts
uses: Swatinem/rust-cache@v2
- name: Download and install fda binary
run: cargo install fda
- name: Deploy Feldera Pipeline
run: cd feldera && bash deploy.sh
env:
FELDERA_API_KEY: ${{ secrets.FELDERA_API_KEY }}
FELDERA_HOST: ${{ secrets.FELDERA_HOST }}