mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-22 15:22:13 +01:00
fix(ci): with secret
This commit is contained in:
parent
f42da8416a
commit
25fb9d4f24
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
@ -3,6 +3,8 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
AWS_ACCESS_KEY_ID: ${{ AWS_ACCESS_KEY_ID }}
|
||||||
|
AWS_SECRET_ACCESS_KEY: ${{ AWS_SECRET_ACCESS_KEY }}
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -137,6 +137,14 @@ fn get_dependencies(client: Arc<Query>) -> Container {
|
|||||||
None,
|
None,
|
||||||
)
|
)
|
||||||
.with_env_variable("RUSTC_WRAPPER".into(), "/usr/local/bin/sccache".into())
|
.with_env_variable("RUSTC_WRAPPER".into(), "/usr/local/bin/sccache".into())
|
||||||
|
.with_env_variable(
|
||||||
|
"AWS_ACCESS_KEY_ID".into(),
|
||||||
|
std::env::var("AWS_ACCESS_KEY_ID").unwrap_or("".into()),
|
||||||
|
)
|
||||||
|
.with_env_variable(
|
||||||
|
"AWS_SECRET_ACCESS_KEY".into(),
|
||||||
|
std::env::var("AWS_SECRET_ACCESS_KEY").unwrap_or("".into()),
|
||||||
|
)
|
||||||
.with_env_variable("SCCACHE_BUCKET".into(), "sccache".into())
|
.with_env_variable("SCCACHE_BUCKET".into(), "sccache".into())
|
||||||
.with_env_variable("SCCACHE_REGION".into(), "auto".into())
|
.with_env_variable("SCCACHE_REGION".into(), "auto".into())
|
||||||
.with_env_variable(
|
.with_env_variable(
|
||||||
|
Loading…
Reference in New Issue
Block a user