Skip to content

Commit f3840e4

Browse files
Update rust.yml
1 parent 71fc161 commit f3840e4

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/rust.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,14 @@ jobs:
1818
- name: Build
1919
run: cargo build --verbose
2020
- name: Run clippy
21-
run: cargo clippy -- -D warnings
21+
run: cargo clippy -- -D warnings
22+
- name: Upload a Build Artifact
23+
uses: actions/upload-artifact@v6.0.0
24+
with:
25+
# Artifact name
26+
name: ModAutoUpdates
27+
# A file, directory or wildcard pattern that describes what to upload
28+
path: /target/debug/ModAutoUpdates
29+
if-no-files-found: error
30+
# If true, an artifact with a matching name will be deleted before a new one is uploaded. If false, the action will fail if an artifact for the given name already exists. Does not fail if the artifact does not exist.
31+
overwrite: true

0 commit comments

Comments
 (0)