Skip to content

Commit

Permalink
uncomment build conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpursley committed Apr 22, 2024
1 parent fb337ab commit 89470b5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,18 @@ jobs:
run: Npgmq.Test/scripts/run-tests.sh 0.31.0

- name: Pack
#if: startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.ref, 'refs/tags/v')
run: dotnet pack Npgmq/Npgmq.csproj --no-build --configuration Release /p:PackageVersion=${{ env.VERSION }} /p:CopyrightYear=$(date +%Y) --output out

- uses: actions/upload-artifact@v4
#if: startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.ref, 'refs/tags/v')
with:
name: build-artifact
path: out

publish:
needs: build
#if: startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
Expand All @@ -75,5 +75,5 @@ jobs:
with:
dotnet-version: '8.0.x'

# - name: Push
# run: dotnet nuget push "out/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
- name: Push
run: dotnet nuget push "out/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json

0 comments on commit 89470b5

Please sign in to comment.