mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 04:53:29 +01:00
fixed incorrect run argument in workflow
This commit is contained in:
parent
c8628b21bc
commit
a51192948a
1 changed files with 2 additions and 2 deletions
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
|
@ -23,7 +23,7 @@ jobs:
|
||||||
- name: Run cake
|
- name: Run cake
|
||||||
uses: coactions/setup-xvfb@v1
|
uses: coactions/setup-xvfb@v1
|
||||||
with:
|
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:
|
env:
|
||||||
NUGET_KEY: ${{ secrets.NUGET_KEY }}
|
NUGET_KEY: ${{ secrets.NUGET_KEY }}
|
||||||
BAGET_KEY: ${{ secrets.BAGET_KEY }}
|
BAGET_KEY: ${{ secrets.BAGET_KEY }}
|
||||||
|
@ -41,7 +41,7 @@ jobs:
|
||||||
- name: Restore tools
|
- name: Restore tools
|
||||||
run: dotnet tool restore
|
run: dotnet tool restore
|
||||||
- name: Run cake
|
- 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
|
- name: Deploy
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
# this is a beautiful way to deploy a website and i will not take any criticism
|
# this is a beautiful way to deploy a website and i will not take any criticism
|
||||||
|
|
Loading…
Reference in a new issue