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
Create new file, with path .github/workflows/artifact.yml
See all the details of file artifact.yml
In the section of steps, we set a name for each step and include the action/checkout and action/upload-artifact
For configure the action/upload-artifact, we use the variable ARTIFACT_NAME and path as with parameters
Press Commit new changes
In the section of Actions, we noticed that our workflow start to run successfully
Well done!!! 😃
❓FAQ
What is a workflow artifact for Github Actions?
Answer:
An artifact is a file or collection of files produced during a workflow run. For example, you can use artifacts to save your build and test output after a workflow run has ended. All actions and workflows called within a run have write access to that run's artifacts
About
How to develop a workflow that creates an artifact