Update LANCommander.Release.yml
This commit is contained in:
parent
68ae929ede
commit
b6a448a289
1 changed files with 9 additions and 2 deletions
11
.github/workflows/LANCommander.Release.yml
vendored
11
.github/workflows/LANCommander.Release.yml
vendored
|
@ -9,6 +9,13 @@ jobs:
|
|||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: frabert/replace-string-action@v2
|
||||
name: Trim Tag Ref
|
||||
id: trim_tag_ref
|
||||
with:
|
||||
string: '${{ github.ref }}'
|
||||
pattern: 'refs/tags/'
|
||||
replace-with: ''
|
||||
# Server
|
||||
- uses: actions/checkout@v3
|
||||
- name: Setup .NET
|
||||
|
@ -24,7 +31,7 @@ jobs:
|
|||
- name: Upload Artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: LANCommander-${{ github.ref }}
|
||||
name: LANCommander-${{ steps.trim_tag_ref.outputs.replaced }}
|
||||
path: "./_Build"
|
||||
# Client
|
||||
- uses: actions/checkout@v3
|
||||
|
@ -49,7 +56,7 @@ jobs:
|
|||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3.1.2
|
||||
with:
|
||||
name: LANCommander.PlaynitePlugin-${{ github.ref }}
|
||||
name: LANCommander.PlaynitePlugin-${{ steps.trim_tag_ref.outputs.replaced }}
|
||||
path: LANCommander.PlaynitePlugin_48e1bac7-e0a0-45d7-ba83-36f5e9e959fc_1_0.pext
|
||||
# Release
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue