Skip to content

Commit

Permalink
chore: v0.1.0-alpha.0 [release]
Browse files Browse the repository at this point in the history
  • Loading branch information
bencelang committed Mar 6, 2022
1 parent 9ea128c commit 3a8656b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
pr: ${{ github.event.number || 0 }}

scan:
if: github.event_name != 'push' && github.event_name != 'workflow_dispatch' || github.event.inputs.scan
if: (github.event_name != 'push' || startsWith(github.ref, 'refs/tags/v')) && (github.event_name != 'workflow_dispatch' || github.event.inputs.scan)
needs: build
uses: ./.github/workflows/scan.yml
permissions:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ jobs:
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.102
- uses: github/codeql-action/init@v1
with:
languages: csharp
- uses: actions/cache@v1
with:
path: ~/.nuget/packages
Expand All @@ -27,5 +24,8 @@ jobs:
./src
./test
key: ${{ github.sha }}
- uses: github/codeql-action/init@v1
with:
languages: csharp
- name: codeql
run: github/codeql-action/analyze@v1
2 changes: 1 addition & 1 deletion src/QueryString/Avolantis.Text.QueryString.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<Title>Avolantis.Text.QueryString</Title>
<Product>Avolantis.Text.QueryString</Product>
<Version>0.1.0-preview.0</Version>
<Version>0.1.0-alpha.0</Version>
<PackageTags>query query-string filter serialization http rest</PackageTags>
<Description>QueryString handling and serialization for .NET 6</Description>
</PropertyGroup>
Expand Down

0 comments on commit 3a8656b

Please sign in to comment.