Skip to content

feat: Display Docker image tag in app Footer to help identify deploye… #6

feat: Display Docker image tag in app Footer to help identify deploye…

feat: Display Docker image tag in app Footer to help identify deploye… #6

Workflow file for this run

name: Push
on:
push:
branches: [main]
jobs:
call-pre:
name: .Pre
uses: ./.github/workflows/.pre.yml
call-lint:
name: Lint
uses: ./.github/workflows/lint.yml
needs: call-pre
call-test:
name: Test
if: ${{ always() }}
uses: ./.github/workflows/test.yml
needs: call-lint
call-codeql:
name: CodeQL
if: ${{ always() }}
uses: ./.github/workflows/codeql.yml
needs: call-lint