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
Release merge 3.0.1
Added Info, debug, error and warn statements for better debugging
Fixed cheat so you can't press 0 to win
No more empty
Removed bug so now you can't get more than 3 scores in the scoreboard
# Destination path. Supports basic tilde expansion. Defaults to $GITHUB_WORKSPACE
33
-
#path: # optional
34
-
# A glob pattern matching the artifacts that should be downloaded. Ignored if name is specified.
35
-
#pattern: # optional
36
-
# When multiple artifacts are matched, this changes the behavior of the destination directories. If true, the downloaded artifacts will be in the same directory specified by path. If false, the downloaded artifacts will be extracted into individual named directories within the specified path.
37
-
#merge-multiple: # optional, default is false
38
-
# The GitHub token used to authenticate with the GitHub API. This is required when downloading artifacts from a different repository or from a different workflow run. If this is not specified, the action will attempt to download artifacts from the current repository and the current workflow run.
39
-
#github-token: # optional
40
-
# The repository owner and the repository name joined together by "/". If github-token is specified, this is the repository that artifacts will be downloaded from.
41
28
repository: ${{ github.repository }}
42
-
# The id of the workflow run where the desired download artifact was uploaded from. If github-token is specified, this is the run that artifacts will be downloaded from.
43
29
run-id: ${{ github.run_id }}
44
30
- uses: actions/upload-artifact@v4
45
31
with:
46
-
# Name of the artifact to upload.
47
-
# Optional. Default is 'artifact'
48
-
name: artifact_linux
49
-
50
-
# A file, directory or wildcard pattern that describes what to upload
0 commit comments