Add shells

This commit is contained in:
Ben Meadors 2022-11-19 18:35:00 -06:00
parent 29cd7568f5
commit 57e2e75d24

View File

@ -29,14 +29,17 @@ runs:
key: ${{ runner.os }}-pip key: ${{ runner.os }}-pip
- name: Upgrade python tools - name: Upgrade python tools
shell: bash
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -U platformio adafruit-nrfutil pip install -U platformio adafruit-nrfutil
- name: Upgrade platformio - name: Upgrade platformio
shell: bash
run: | run: |
pio upgrade pio upgrade
- name: Get release version string - name: Get release version string
shell: bash
run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT run: echo "version=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
id: version id: version