build(release): update version to 1.0.0 #55
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate Project | |
on: [pull_request] | |
jobs: | |
validate-project: | |
# ubuntu-latest provides many dependencies. | |
# See: https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest commit | |
uses: actions/checkout@v2 | |
- name: Restore local .NET tools (including cicee) | |
run: dotnet tool restore | |
- name: Execute verification script - Validate source and perform dry-run composition | |
run: dotnet cicee exec -c ci/bin/validate.sh | |
env: | |
NUGET_API_KEY: ${{secrets.NUGET_API_KEY}} | |
NUGET_SOURCE: ${{secrets.NUGET_SOURCE}} | |
RELEASE_ENVIRONMENT: false |