workflow dispatch #63
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
name: DataMiner CI Automation | |
on: | |
push: | |
branches: [] | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+.[0-9]+' | |
- '[0-9]+.[0-9]+.[0-9]+.[0-9]+-[0-9a-zA-Z]+' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
CI: | |
uses: ./.github/workflows/Automation Master SDK Workflow.yml | |
with: | |
referenceName: ${{ github.ref_name }} | |
runNumber: ${{ github.run_number }} | |
referenceType: ${{ github.ref_type }} | |
repository: ${{ github.repository }} | |
owner: ${{ github.repository_owner }} | |
sonarCloudProjectName: qsdqsd | |
secrets: | |
api-key: ${{ secrets.DATAMINER_DEPLOY_KEY }} | |
sonarCloudToken: ${{ secrets.SONAR_TOKEN }} | |
CD: | |
uses: ArneMaes0/ReusableWorkflows/.github/workflows/Release With DMAPP Artifact.yml@main | |
if: github.ref_type == 'tag' | |
needs: CI | |
permissions: | |
contents: write | |
with: | |
referenceName: ${{ github.ref_name }} | |
referenceType: ${{ github.ref_type }} | |
changelogDirectory: Documentation |