File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : DataMiner CI Automation
2
+ on :
3
+ push :
4
+ branches : []
5
+ tags :
6
+ - ' [0-9]+.[0-9]+.[0-9]+.[0-9]+'
7
+ workflow_dispatch :
8
+ jobs :
9
+ CI :
10
+ if : inputs.referenceType == 'tag'
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - run : echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
14
+ - run : echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
15
+ - run : echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
16
+ - name : Check out repository code
17
+ uses : actions/checkout@v4
18
+ - run : echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
19
+ - run : echo "🖥️ The workflow is now ready to test your code on the runner."
20
+ - name : List files in the repository
21
+ run : |
22
+ ls ${{ github.workspace }}
23
+ - run : echo "🍏 This job's status is ${{ job.status }}."
You can’t perform that action at this time.
0 commit comments