From a473f497395a0f1e19c6fd2f338835ddb5dccca5 Mon Sep 17 00:00:00 2001 From: Joseph Manley Date: Thu, 3 Sep 2020 00:02:22 -0400 Subject: [PATCH] Add workflow explaination --- ReadMe.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ReadMe.md b/ReadMe.md index db03abf..8584604 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -56,6 +56,13 @@ jobs: #### 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 ##### Change Exports