Workaround issue on apple terminal with ❤️ not being actually double width #265
This file contains 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
# Same as full workflow (eg from fortio/multicurl) but without the goreleaser step | |
name: "Shared library fortio workflows" | |
on: | |
push: | |
branches: [ main ] | |
tags: | |
- 'v*' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
call-gochecks: | |
uses: fortio/workflows/.github/workflows/gochecks.yml@main | |
call-codecov: | |
uses: fortio/workflows/.github/workflows/codecov.yml@main | |
call-codeql: | |
uses: fortio/workflows/.github/workflows/codeql-analysis.yml@main | |
releaser-fps: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
uses: fortio/workflows/.github/workflows/releaser.yml@main | |
with: | |
description: "Fortio terminal fps checker" | |
binary_name: "fps" | |
main_path: "./fps" | |
dockerfile: "./Dockerfile.fps" | |
secrets: | |
GH_PAT: ${{ secrets.GH_PAT }} | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} | |
releaser-life: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
uses: fortio/workflows/.github/workflows/releaser.yml@main | |
with: | |
description: "Fortio terminal Conway's game of life demo" | |
binary_name: "life" | |
main_path: "./life" | |
dockerfile: "./Dockerfile.life" | |
secrets: | |
GH_PAT: ${{ secrets.GH_PAT }} | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} | |
releaser-brick: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
uses: fortio/workflows/.github/workflows/releaser.yml@main | |
with: | |
description: "Fortio terminal brick smashing game in the style of Breakout" | |
binary_name: "brick" | |
main_path: "./brick" | |
dockerfile: "./Dockerfile.brick" | |
secrets: | |
GH_PAT: ${{ secrets.GH_PAT }} | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} | |
releaser-nocolor: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
uses: fortio/workflows/.github/workflows/releaser.yml@main | |
with: | |
description: "Fortio terminal nocolor (and no other ansi code either) filter" | |
binary_name: "nocolor" | |
main_path: "./nocolor" | |
dockerfile: "./Dockerfile.nocolor" | |
secrets: | |
GH_PAT: ${{ secrets.GH_PAT }} | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} |