Skip to content

Commit

Permalink
Merge pull request #16 from netmindz/actions-assets
Browse files Browse the repository at this point in the history
Actions assets
Merge 123 🫶
  • Loading branch information
ewoudwijma committed Aug 6, 2023
2 parents d0e19b9 + c2cf1eb commit c31c638
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,18 @@ jobs:
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Setup Vars
run: git_hash=$(git rev-parse --short "$GITHUB_SHA")
id: vars
run: |
git_hash=$(git rev-parse --short "$GITHUB_SHA")
git_branch=${GITHUB_REF#refs/heads/}
echo "git_hash=${git_hash}" >> $GITHUB_ENV
echo "git_branch=${git_branch}" >> $GITHUB_ENV
- name: Build PlatformIO Project
run: pio run
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: StarMod-esp32-${git_hash}.bin
name: StarMod-esp32-${{env.git_branch}}-${{env.git_hash}}.bin
path: .pio/build/esp32dev/firmware.bin
retention-days: 30

0 comments on commit c31c638

Please sign in to comment.