Add workflow explaination

This commit is contained in:
Joseph Manley 2020-09-03 00:02:22 -04:00
parent 0fcde89bd7
commit a473f49739
No known key found for this signature in database
GPG key ID: A494D9357BA1BE31

View file

@ -56,6 +56,13 @@ jobs:
#### Workflow Explaination #### Workflow Explaination
This workflow has three steps:
- **Checkout**: The Checkout step clones the project on the GitHub actions runner.
- **Build**: This step uses this action to build the Godot project.
- **Upload Artifact**: The Upload Artifact step uploads the output from the build step.
**Matrix Explaination**: The matrix object runs the job for EACH possible value. So in this job, we are using a `platform` matrix to automatically run our workflow for the values `linux`, `windows`, and `mac`.
#### Simple Changes #### Simple Changes
##### Change Exports ##### Change Exports