Zip Code Base with Github Actions for Releases

Keith Weaver
3 min readOct 24, 2019

The original post can be found here.

In this tutorial, we will use Github Actions to zip the code base and create a new release with it.

Code Base Setup

You will need a Github repository and access to Github Actions. First step, clone your repository and switch into it. We will begin to create empty files in the folder. These files represent a simple app.

touch README.md
touch main.py
touch .gitignore

--

--