Skip to content

Commit

Permalink
fixed incorrect run argument in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ellpeck committed Apr 5, 2024
1 parent c8628b2 commit a511929
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Run cake
uses: coactions/setup-xvfb@v1
with:
run: dotnet cake --target Publish --ref ${{ github.ref }} --run ${{ github.run_number }}
run: dotnet cake --target Publish --ref ${{ github.ref }} --buildNum ${{ github.run_number }}
env:
NUGET_KEY: ${{ secrets.NUGET_KEY }}
BAGET_KEY: ${{ secrets.BAGET_KEY }}
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Restore tools
run: dotnet tool restore
- name: Run cake
run: dotnet cake --target Document --ref ${{ github.ref }} --run ${{ github.run_number }}
run: dotnet cake --target Document --ref ${{ github.ref }} --buildNum ${{ github.run_number }}
- name: Deploy
if: startsWith(github.ref, 'refs/tags/')
# this is a beautiful way to deploy a website and i will not take any criticism
Expand Down

0 comments on commit a511929

Please sign in to comment.