diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a45cd4..07c3fe3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: - name: Publish if: github.event_name == 'push' run: | - if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+$" ) { + if ( "${{github.ref}}" -match "^refs/tags/[0-9]+\.[0-9]+\.[0-9]+" ) { dotnet nuget push src\${{env.PROJECT_NAME}}\bin\Release\*.nupkg -s nuget.org -k ${{secrets.NUGET_TOKEN}} } else { echo "publish is only enabled by tagging with a release tag" diff --git a/changelog.md b/changelog.md index 7e5a45e..b08598e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## 0.8.0 (2 May 2020) +## 0.8.0-alpha-001 (2 May 2020) - Use CLangSharp - libclang 10.0 ## 0.7.3 (8 Mar 2020) diff --git a/src/CppAst/CppAst.csproj b/src/CppAst/CppAst.csproj index 956dd7c..ce88147 100644 --- a/src/CppAst/CppAst.csproj +++ b/src/CppAst/CppAst.csproj @@ -2,8 +2,8 @@ netstandard2.0 0.8.0 - + alpha + 001 CppAst CppAst is a .NET library providing a C/C++ parser for header files with access to the full AST, comments and macros Alexandre Mutel