-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (36 loc) · 1.17 KB
/
DataMiner+CICD+Automation.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: DataMiner CICD Automation
on:
push:
branches: []
tags:
- '[0-9]+.[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-[0-9a-zA-Z]+'
workflow_dispatch:
jobs:
CI:
name: CI
uses: SkylineCommunications/_ReusableWorkflows/.github/workflows/Automation Master Workflow.yml@main
with:
referenceName: ${{ github.ref_name }}
runNumber: ${{ github.run_number }}
referenceType: ${{ github.ref_type }}
repository: ${{ github.repository }}
owner: ${{ github.repository_owner }}
sonarCloudProjectName: '# Grab your project id from https://sonarcloud.io/project/create.'
secrets:
api-key: ${{ secrets.DATAMINER_DEPLOY_KEY }}
sonarCloudToken: ${{ secrets.SONAR_TOKEN }}
CD:
if: github.ref_type == 'tag'
environment: production
name: CD
runs-on: ubuntu-latest
needs: CI
steps:
- uses: actions/checkout@v3
- name: Skyline DataMiner Deploy Action
uses: SkylineCommunications/Skyline-DataMiner-Deploy-Action@v1
with:
stage: Deploy
api-key: ${{ secrets.DATAMINER_DEPLOY_KEY }}
artifact-id: ${{ needs.CI.outputs.artifact-id }}