Update backup/restore scripts. #7
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 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 }} |