This commit is contained in:
parent
df3e0cfc50
commit
85479ff453
@ -8,18 +8,16 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Get Tag Name & REPO Url
|
- name: "🏷️ Get Tag Name & repo URL"
|
||||||
uses: olegtarasov/get-tag@v2.1.2
|
uses: olegtarasov/get-tag@v2.1.2
|
||||||
id: tagName
|
id: tagName
|
||||||
with:
|
with:
|
||||||
tagRegex: "test-(.+)" # Optional. Returns specified group text as tag name. Full tag string is returned if regex is not defined.
|
tagRegex: "test-(.+)" # Optional. Returns specified group text as tag name. Full tag string is returned if regex is not defined.
|
||||||
tagRegexGroup: 1 # Optional. Default is 1.
|
tagRegexGroup: 1 # Optional. Default is 1.
|
||||||
failOnNoTag: true # Optional. Default is false.
|
failOnNoTag: true # Optional. Default is false.
|
||||||
- name: Show tag name
|
- name: "🎙️ Show tag name"
|
||||||
run: echo ${{ steps.tagName.outputs.tag }}
|
run: echo ${{ steps.tagName.outputs.tag }}
|
||||||
- name: print token
|
- name: "🔽 Checkout code"
|
||||||
run: echo ${{ secrets.TOKEN_GITEA }}
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
# Clone the URL OF REMOTE PROJECT to test
|
# Clone the URL OF REMOTE PROJECT to test
|
||||||
with:
|
with:
|
||||||
@ -29,7 +27,8 @@ jobs:
|
|||||||
token: ${{ secrets.TOKEN_GITEA }}
|
token: ${{ secrets.TOKEN_GITEA }}
|
||||||
github-server-url: 'https://gitea.louisgallet.fr'
|
github-server-url: 'https://gitea.louisgallet.fr'
|
||||||
|
|
||||||
- uses: actions/setup-dotnet@v3
|
- name: "🐙 Setup .NET"
|
||||||
|
uses: "actions/setup-dotnet@v3"
|
||||||
with:
|
with:
|
||||||
dotnet-version: '8.0.x'
|
dotnet-version: '8.0.x'
|
||||||
- name: "🏗️ Build"
|
- name: "🏗️ Build"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user