Skip to content

Commit

Permalink
Update build-code.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartpittaway committed Jan 25, 2023
1 parent fca5849 commit 903def2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-code.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,25 @@ jobs:
job_build_modulecode:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: ${{ runner.os }}-pip-

- name: Cache PlatformIO
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.platformio
key: ${{ runner.os }}-platformio-${{ hashFiles('**/lockfiles') }}

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/.local/share/virtualenvs
key: ${{ runner.os }}-pipenv-${{ hashFiles('Pipfile.lock') }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
run: mv release.zip release_${{ env.dt }}.zip

- name: Publish Artifacts 1
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: DIYBMS-CurrentMonitor-Compiled
path: ~/OUTPUT
Expand Down

0 comments on commit 903def2

Please sign in to comment.