Refactor: latex and qrcode pipes #2601
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
# Generate a set of screenshots for the current branch and compare against previously generated on master | |
name: Test-Visual Compare Screenshots | |
on: | |
pull_request: | |
types: [labeled, synchronize] | |
branches: | |
- master | |
concurrency: | |
group: test-visual-compare-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# env: | |
# TODO - replace with dedicated screenshots deployment | |
# DEPLOYMENT: plh_global | |
jobs: | |
generate: | |
if: contains(github.event.pull_request.labels.*.name, 'Test - visual') | |
uses: ./.github/workflows/test-visual.yml | |
secrets: inherit | |
with: | |
compare: true |