added workflow
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 34s
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 34s
This commit is contained in:
parent
8ce55e986d
commit
c9c0c7e6a6
24
.gitea/workflows/cicd.yml
Normal file
24
.gitea/workflows/cicd.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: Gitea Actions Demo
|
||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Explore-Gitea-Actions:
|
||||
runs-on: dotNET
|
||||
steps:
|
||||
- run: echo "The job was automatically triggered by a ${{ gitea.event_name }} event."
|
||||
- run: echo "This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
||||
- run: echo "The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- run: echo "The workflow is now ready to test your code on the runner."
|
||||
- name: List files in the repository
|
||||
run: |
|
||||
ls ${{ gitea.workspace }}
|
||||
- name: start scanning
|
||||
run: cd src && dotnet sonarscanner begin /k:"Engine_silk.net" /d:sonar.host.url="https://sonar.elosia.mooo.com" /d:sonar.token="sqp_d4f022f96ed66bc3e6acfd4468dfb7825156402b"
|
||||
- name: build
|
||||
run: cd src && dotnet build
|
||||
- name: end scanning
|
||||
run: cd src && dotnet sonarscanner end /d:sonar.token="sqp_d4f022f96ed66bc3e6acfd4468dfb7825156402b"
|
||||
- run: echo "This job's status is ${{ job.status }}."
|
Loading…
Reference in New Issue
Block a user