Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cziter15 authored Jul 18, 2024
1 parent 5fee63a commit 903a3cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ jobs:
build-with-pio:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install PlatformIO
Expand All @@ -39,7 +39,7 @@ jobs:
pio upgrade
pio run
- name: Deploy firmware artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: RaespFirmware-${{ github.run_id }}
path: firmware/.pio/build/raesp-esp12s/firmware.bin

0 comments on commit 903a3cb

Please sign in to comment.