Skip to content
This repository has been archived by the owner on Dec 24, 2024. It is now read-only.

ci: PLT-607: Remove dangling hyphen in release name #12

ci: PLT-607: Remove dangling hyphen in release name

ci: PLT-607: Remove dangling hyphen in release name #12

Workflow file for this run

name: "CI/CD Pipeline"
on:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.pull_request.head.ref || github.ref_name }}
cancel-in-progress: true
jobs:
build:
name: "Build"
uses: ./.github/workflows/docker-build.yml
permissions:
contents: read
checks: write
with:
sha: ${{ github.event.pull_request.head.sha || github.event.after }}
branch_name: ${{ github.event.pull_request.head.ref || github.ref_name }}
secrets: inherit
deploy:
name: "Deploy"
uses: ./.github/workflows/deploy.yml
needs:
- build
permissions:
id-token: write
contents: read
deployments: write
with:
image_version: ${{ needs.build.outputs.image_version }}
secrets: inherit