Skip to content

Responsive pagination, music album, edit form (#459) #6

Responsive pagination, music album, edit form (#459)

Responsive pagination, music album, edit form (#459) #6

Workflow file for this run

name: PKG
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
# purpose: Continuous Delivery (aka Packaging & Shipping)
on:
push:
branches: [main]
workflow_dispatch: {}
jobs:
git-check:
name: Git
uses: ./.github/workflows/reusable-git-check.yml
image-publication:
name: "Image ${{ matrix.name }}"
needs: git-check
if: github.event_name == 'workflow_dispatch' || needs.git-check.outputs.app_changed == 'true'
strategy:
matrix:
include:
- name: "Blazor App"
image-name: "keeptrack-blazorapp"
image-definition: "src/BlazorApp/Dockerfile"
- name: "Web Api"
image-name: "keeptrack-webapi"
image-definition: "src/WebApi/Dockerfile"
permissions:
id-token: write
contents: read
uses: devpro/github-workflow-parts/.github/workflows/reusable-container-publication.yml@4f3152777635eb3bcf1ee21db103d70f790ff1cb
with:
create-latest: ${{ github.ref_name == 'main' }}
image-definition: ${{ matrix.image-definition }}
image-name: ${{ matrix.image-name }}
image-path: ${{ vars.CONTAINER_REGISTRY_PATH }}
image-tag: "${{ needs.git-check.outputs.version_major_minor }}.${{ github.run_id }}"
secrets:
container-registry-password: ${{ secrets.DOCKERHUB_TOKEN }}
container-registry-username: ${{ secrets.DOCKERHUB_USERNAME }}