fix: incorrect permission for /tmp subdirectory when fallbacking from… #117
Workflow file for this run
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: Build and test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
cargo_test: | |
name: Cargo tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
# Deploy services used for test (Hashicorp Vault, etc.) | |
- uses: isbang/[email protected] | |
with: | |
compose-file: "./tests/docker-compose.yml" | |
down-flags: "--volumes" | |
- run: cargo test | |
docker_build: | |
name: Docker build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build | |
uses: docker/build-push-action@v4 | |
with: | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
outputs: "type=local,dest=novops-build" | |
- name: Upload binary artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: novops-binary | |
path: | | |
novops-build/novops | |
load_novops: | |
name: run Novops load on Github action | |
runs-on: ubuntu-latest | |
needs: docker_build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download novops artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: novops-binary | |
- name: load novops | |
run: | | |
chmod +x ./novops | |
./novops load -c tests/.novops.plain-strings.yml -s .envrc -e dev | |
cat .envrc >> "$GITHUB_ENV" | |
- name: check novops loaded values | |
run: env | grep MY_APP_HOST |