You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# A file, directory or wildcard pattern that describes what to upload
43
+
path: result/*
44
+
# The desired behavior if no files are found using the provided path.
45
+
if-no-files-found: error # optional, default is warn
46
+
# The level of compression for Zlib to be applied to the artifact archive. The value can range from 0 to 9: - 0: No compression - 1: Best speed - 6: Default compression (same as GNU Gzip) - 9: Best compression Higher levels will result in better compression, but will take longer to complete. For large files that are not easily compressed, a value of 0 is recommended for significantly faster uploads.
47
+
overwrite: true # optional, default is false
48
+
# If true, hidden files will be included in the artifact. If false, hidden files will be excluded from the artifact.
49
+
include-hidden-files: false # optional, default is false
for /d %%a in (build\*) do (powershell Compress-Archive ".\%%a\*" "seekers-win32.zip")
59
75
60
-
- name: "Setup project"
61
-
run: .\setup.bat
76
+
- name: Deploy Artifact
77
+
uses: actions/upload-artifact@v4.6.2
78
+
with:
79
+
# Artifact name
80
+
name: build-windows # optional, default is artifact
81
+
# A file, directory or wildcard pattern that describes what to upload
82
+
path: seekers-linux.zip
83
+
# The desired behavior if no files are found using the provided path.
84
+
if-no-files-found: error # optional, default is warn
85
+
# The level of compression for Zlib to be applied to the artifact archive. The value can range from 0 to 9: - 0: No compression - 1: Best speed - 6: Default compression (same as GNU Gzip) - 9: Best compression Higher levels will result in better compression, but will take longer to complete. For large files that are not easily compressed, a value of 0 is recommended for significantly faster uploads.
86
+
overwrite: true # optional, default is false
87
+
# If true, hidden files will be included in the artifact. If false, hidden files will be excluded from the artifact.
88
+
include-hidden-files: false # optional, default is false
62
89
63
-
- name: "Deploy binaries"
64
-
run: .\deploy.bat
90
+
prerelease:
91
+
name: Prerelease
92
+
runs-on: "ubuntu-latest"
93
+
steps:
94
+
- name: Download Artifact
95
+
uses: actions/download-artifact@v5
96
+
with:
97
+
# Name of the artifact to download.
98
+
# If unspecified, all artifacts for the run are downloaded.
99
+
# Optional.
100
+
name: build-linux
101
+
102
+
- name: Download Artifact
103
+
uses: actions/download-artifact@v5
104
+
with:
105
+
# Name of the artifact to download.
106
+
# If unspecified, all artifacts for the run are downloaded.
0 commit comments