Skip to content

Commit

Permalink
attestation endpoint for dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Amin Razavi committed Sep 5, 2023
1 parent 1946e40 commit e4aec4b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/sign-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ name: Tertnoa-SGX-Enclave

on:
push:
branches: [ "master" ]
tags: [v0.4.*]
tags: [v0.4*]
pull_request:
branches: [ "master" ]
types: [opened]
types: [opened, reopened]

workflow_dispatch:

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sgx_server"
version ="0.4.3"
version ="0.4.4"
edition = "2021"

[[bin]]
Expand Down
4 changes: 2 additions & 2 deletions src/chain/constants.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub const VERSION: &str = "0.4.3";
pub const VERSION: &str = "0.4.4";
pub const ATTESTATION_SERVER_URL: &str = if cfg!(feature = "alpha-net") {
// PRODUCTION-KEY when binary is built by github
"https://alphanet-attestation.ternoa.network/attest"
Expand All @@ -7,7 +7,7 @@ pub const ATTESTATION_SERVER_URL: &str = if cfg!(feature = "alpha-net") {
"https://mainnet-attestation.ternoa.network/attest"
} else {
// DEVELOPMENT-KEY when binary is built locally
"https://dev-c1n3.ternoa.network:9100/attest"
"https://dev-attestation.ternoa.network/attest"
};

pub const SENTRY_URL: &str = "https://[email protected]/22";
Expand Down

0 comments on commit e4aec4b

Please sign in to comment.