Updated rorm-db #11
Workflow file for this run
This file contains hidden or 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: Compile releases locally | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| defaults: | |
| run: | |
| shell: sh | |
| jobs: | |
| install: | |
| name: Install rorm-cli on local runners | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - [ self-hosted, linux, x64 ] | |
| - [ self-hosted, windows, x64 ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Install rorm-cli locally | |
| run: CARGO_TARGET_DIR=~/cache/${GITHUB_REPOSITORY}/target ~/.cargo/bin/cargo install -f rorm-cli --path . |