Skip to content

Commit

Permalink
Fix syntax in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
noisymime committed Sep 8, 2024
1 parent fcd86dd commit b08bbe4
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,17 @@ jobs:
curl -v --tlsv1.2 --ipv4 --user "[email protected]:$WEB_PWD" --basic -T "./.pio/build/esp32-c3-supermini/littlefs.bin" "https://speeduino.com:2078/AirBear/$TAG_NAME/AirBear-Dash-Data-littlefs.bin"
- name: Build Changelog
uses: mikepenz/release-changelog-builder-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
mode: "COMMIT"
uses: mikepenz/release-changelog-builder-action@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
mode: "COMMIT"

- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
body: ${{steps.github_release.outputs.changelog}}
files: |
./.pio/build/esp32-c3-supermini/firmware.bin
./.pio/build/esp32-c3-supermini/littlefs.bin
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
body: ${{steps.github_release.outputs.changelog}}
files: |
./.pio/build/esp32-c3-supermini/firmware.bin
./.pio/build/esp32-c3-supermini/littlefs.bin

0 comments on commit b08bbe4

Please sign in to comment.