We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c25f1f commit 46a5f02Copy full SHA for 46a5f02
1 file changed
.github/workflows/firmware-builds.yml
@@ -95,6 +95,8 @@ jobs:
95
commit:
96
runs-on: ubuntu-latest
97
needs: test_builds
98
+ if: github.event_name == 'push' && (github.ref == 'refs/heads/master' ||
99
+ github.ref == 'refs/heads/dev')
100
steps:
101
- name: Checkout target repository
102
uses: actions/checkout@v4
@@ -114,8 +116,6 @@ jobs:
114
116
cd target-repo
115
117
git config user.name "GitHub Actions"
118
git config user.email "actions@github.com"
- for variant in lolin_d32_pro lolin_d32_pro_sdmmc_pe ttgo_t8 complete; do
- git add Firmwares/${{ github.ref_name }}/firmware-*.bin
119
- done
+ git add Firmwares/${{ github.ref_name }}/firmware-*.bin
120
git commit -m "Firmware built from commit biologist79/ESPuino@${{ github.sha }}"
121
git push
0 commit comments