Skip to content

Commit

Permalink
And remove the other } that shouldn't be there..
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewWilkes committed Jun 18, 2024
1 parent d4a7ea7 commit 63569c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
micropython/ports/esp32/build-tildagon/tildagon.txt
- name: Create latest release for tags
uses: "marvinpinto/action-automatic-releases@latest"
if: ${{startsWith(github.event.ref, 'refs/tags/v')} && !contains(github.event.ref, 'rc') }}
if: ${{startsWith(github.event.ref, 'refs/tags/v') && !contains(github.event.ref, 'rc') }}
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
Expand All @@ -91,7 +91,7 @@ jobs:
micropython/ports/esp32/build-tildagon/tildagon.txt
- name: Create preview release for rc tags
uses: "marvinpinto/action-automatic-releases@latest"
if: ${{startsWith(github.event.ref, 'refs/tags/v')} && contains(github.event.ref, 'rc') }}
if: ${{startsWith(github.event.ref, 'refs/tags/v') && contains(github.event.ref, 'rc') }}
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "preview"
Expand All @@ -111,7 +111,7 @@ jobs:
uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action
with:
path: ./flasher
if: ${{startsWith(github.event.ref, 'refs/tags/v')} && !contains(github.event.ref, 'rc') }}
if: ${{startsWith(github.event.ref, 'refs/tags/v') && !contains(github.event.ref, 'rc') }}
deploy:
if: startsWith(github.event.ref, 'refs/tags/v')
needs: Build-Firmware
Expand Down

0 comments on commit 63569c2

Please sign in to comment.