Merge pull request #736 from JakeStanger/dependabot/cargo/regex-1.11.0 #74
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: Publish Schema | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: '-Dwarnings' | |
jobs: | |
publish-schema: | |
name: 'Publish Schema' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@v2 | |
name: Cache dependencies | |
- name: Install build deps | |
run: ./.github/scripts/ubuntu_setup.sh | |
- name: Build | |
run: cargo build --features schema | |
- name: Print schema | |
run: cargo run --features schema -- --print-schema > target/schema.json | |
- name: Copy file via SSH | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
port: ${{ secrets.SSH_PORT }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
source: "target/schema.json" | |
target: /storage/Public/github/ironbar | |
strip_components: 1 |