···7272 env::var("APPLE_DEVELOPER_TOKEN_KEY_ID").context("missing apple developer key ID")?;
7373 let team_id =
7474 env::var("APPLE_DEVELOPER_TOKEN_TEAM_ID").context("missing apple developer team ID")?;
7575- let auth_key = fs::read("keys/AuthKey.p8").context("missing apple developer auth key")?;
7575+ let auth_key_path = env::var("APPLE_DEVELOPER_AUTH_KEY_PATH")
7676+ .context("missing apple developer apple developer auth key path")?;
7777+ let auth_key = fs::read(auth_key_path).context("missing apple developer auth key")?;
7678 let key = EncodingKey::from_ec_pem(&auth_key)
7779 .context("failed to parse apple developer auth key")?;
7880 let user_token = env::var("APPLE_USER_TOKEN").context("missing apple user token")?;