Skip to content

Commit

Permalink
fix: attempt to fix ci/cd 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Eimaen committed Aug 19, 2024
1 parent 2379be3 commit 9a6c677
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
- name: Build
run: dotnet build --configuration Release --verbosity minimal
- name: Publish to NuGET
run: ./publish.sh
run: |
chmod +x ./publish.sh
./publish.sh
if: startsWith( github.ref, 'refs/tags/')
env:
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}
Expand Down

0 comments on commit 9a6c677

Please sign in to comment.