Skip to content

Commit 8c076c6

Browse files
committed
Merge branch 'master' into dev
2 parents ca732dd + 647a201 commit 8c076c6

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "eslauncher2"
3-
version = "0.9.9"
3+
version = "0.9.10"
44
authors = ["M*C*O <mcofficer@gmx.de>", "EndlessSkyCommunity"]
55
edition = "2021"
66
build = "build.rs"

src/github.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pub fn get_pr(id: u16) -> Result<PR> {
4444
))
4545
}
4646

47-
pub fn unblock_artifact_download(artifact_id: u32) -> String {
47+
pub fn unblock_artifact_download(artifact_id: u64) -> String {
4848
format!("https://artifact-unblocker.mcofficer.workers.dev/artifact/{artifact_id}",)
4949
}
5050

@@ -56,7 +56,7 @@ struct Workflows {
5656
#[derive(Deserialize, Debug)]
5757
pub struct Workflow {
5858
name: String,
59-
pub(crate) id: u32,
59+
pub(crate) id: u64,
6060
}
6161

6262
pub fn get_cd_workflow() -> Result<Workflow> {
@@ -84,7 +84,7 @@ pub struct WorkflowRun {
8484
}
8585

8686
pub fn get_latest_workflow_run(
87-
workflow_id: u32,
87+
workflow_id: u64,
8888
branch: &str,
8989
head_repo_id: u32,
9090
) -> Result<WorkflowRun> {
@@ -114,7 +114,7 @@ struct WorkflowRunArtifacts {
114114

115115
#[derive(Deserialize, Debug)]
116116
pub struct WorkflowRunArtifact {
117-
pub id: u32,
117+
pub id: u64,
118118
pub size_in_bytes: u32,
119119
name: String,
120120
expired: bool,

0 commit comments

Comments
 (0)