Skip to content

Commit

Permalink
fix tag regexes for deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
2chevskii committed Mar 26, 2022
1 parent 76715b0 commit 3ba23f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ for:
name: GitHub Release
on:
APPVEYOR_REPO_TAG: true
APPVEYOR_REPO_TAG_NAME: /\d+\.\d+\.\d+/
APPVEYOR_REPO_TAG_NAME: /^\d+\.\d+\.\d+$/
tag: $(appveyor_repo_tag_name)
release: JsTimers v$(appveyor_repo_tag_name)
auth_token: $(GITHUB_ACCESS_TOKEN)
Expand All @@ -55,15 +55,15 @@ for:
name: GitHub PreRelease
on:
APPVEYOR_REPO_TAG: true
APPVEYOR_REPO_TAG_NAME: /\d+\.\d+\.\d+-.+/
APPVEYOR_REPO_TAG_NAME: /^\d+\.\d+\.\d+-.+$/
tag: $(appveyor_repo_tag_name)
auth_token: $(GITHUB_ACCESS_TOKEN)
prerelease: true
artifact: /.*\.(nupkg|dll)/
- provider: NuGet # Push to nuget.org package registry
on:
APPVEYOR_REPO_TAG: true
APPVEYOR_REPO_TAG_NAME: /\d+\.\d+\.\d+(?:-.+)?/
APPVEYOR_REPO_TAG_NAME: /^\d+\.\d+\.\d+(?:-.+)?$/
artifact: /.*\.(s?nupkg)/
skip_symbols: false
api_key: $(NUGET_API_KEY)
Expand All @@ -74,5 +74,5 @@ for:
api_key: $(GITHUB_ACCESS_TOKEN)
on:
APPVEYOR_REPO_TAG: true
APPVEYOR_REPO_TAG_NAME: /\d+\.\d+\.\d+(?:-.+)?/
APPVEYOR_REPO_TAG_NAME: /^\d+\.\d+\.\d+(?:-.+)?$/
# skip_symbols: true

0 comments on commit 3ba23f5

Please sign in to comment.