{ matrix.targets }}.bin" release: needs: build runs-on: ubuntu-latest steps: - name: Download Firmware Files uses: actions/download-artifact@v2 with: path: release - name: Release Firmware uses: ncipollo/release-action@v1 if: startsWith(github.ref, 'refs/tags/') with: artifacts: ...
134 + uses: ncipollo/release-action@v1 135 + if: steps.organize.outputs.status == 'success' && env.UPLOAD_RELEASE == 'true' && !cancelled() 136 + with: 137 + name: R${{ env.DATE }} for ${{ env.FILE_NAME }} 138 + artifacts: ${{ env.FIRMWARE }}/* 139 + allowUp...