Update config.yml

This commit is contained in:
Matthieu 2021-09-26 20:47:05 +04:00 committed by GitHub
parent 7d6fbca800
commit a8428221fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,11 +23,23 @@ jobs:
steps:
- checkout
- setup-bazel
- restore_cache:
keys:
- bazel-cache-{{ .Branch }}
- run:
name: "Build"
command: "bazel build //:packages"
- save_cache:
paths:
- ~/.cache/bazel
key: bazel-cache-{{ .Branch }}
- run:
name: "Move artifacts"
command: |
mkdir ~/project/artifacts
mv ~/project/bazel-bin/packages* ~/project/artifacts
- store_artifacts:
path: ~/project/bazel-bin/packages*
path: ~/project/artifacts
workflows:
build-workflow: