Add descriptive step name #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Worker Build Logs | |
| on: | |
| push: | |
| branches: ["**"] | |
| jobs: | |
| build-logs: | |
| if: github.repository == 'withastro/server-islands' | |
| name: Cloudflare Worker Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Stream Workers Builds Logs | |
| uses: withastro/workers-builds-log-action@v1 | |
| with: | |
| api-token: ${{ secrets.CF_BUILDS_API_TOKEN }} | |
| account-id: ${{ secrets.CF_ACCOUNT_ID }} | |
| worker-tag: ${{ secrets.CF_WORKER_TAG }} |