Update buildRelease.yml

This commit is contained in:
Anthony Wang 2020-06-16 12:08:19 -05:00
parent 076d6c98e7
commit b5338737fe

View file

@ -15,6 +15,21 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Update and Install Build Dependencies
run: |
sudo apt-get update
sudo apt-get install gcc
sudo apt-get clean
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8.3
- name: Install dependencies
run: |
if [ -f ./builder/requirements.txt ]; then pip3 install -r ./builder/requirements.txt; fi
- name: Bump version
run: |
g++ bump_version.cpp bump_version
@ -33,15 +48,6 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8.3
- name: Install dependencies
run: |
if [ -f ./builder/requirements.txt ]; then pip3 install -r ./builder/requirements.txt; fi
- name: Create config script
env:
gitPass: ${{ secrets.SLX_GIT_PASS }}