From b5338737feea8a2b71e3e9033f91b4b32a1f1cb9 Mon Sep 17 00:00:00 2001 From: Ta180m Date: Tue, 16 Jun 2020 12:08:19 -0500 Subject: [PATCH] Update buildRelease.yml --- .github/workflows/buildRelease.yml | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/.github/workflows/buildRelease.yml b/.github/workflows/buildRelease.yml index b937b70..184ccbe 100644 --- a/.github/workflows/buildRelease.yml +++ b/.github/workflows/buildRelease.yml @@ -14,7 +14,22 @@ 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 @@ -32,15 +47,6 @@ jobs: uses: ad-m/github-push-action@master 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: