diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9ca029e..76682be 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,6 +19,9 @@ jobs: with: dotnet-version: 8.0.x + - name: Restore dependencies + run: dotnet restore src/SoundMaker/SoundMaker.csproj; dotnet restore test/SoundMakerTests.csproj + - name: Build the SoundMaker project run: dotnet build src/SoundMaker/SoundMaker.csproj --no-restore --warnaserror --configuration Release @@ -34,7 +37,6 @@ jobs: uses: mathieudutour/github-tag-action@v6.2 with: custom_tag: SoundMaker-Ver.${{ inputs.version }} - tag_prefix: github_token: ${{ secrets.GITHUB_TOKEN }} - name: Create a GitHub release uses: ncipollo/release-action@v1.14.0 @@ -64,4 +66,4 @@ jobs: uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: docs/_site \ No newline at end of file + publish_dir: docs/_site