ci: fix errors with the update pipeline, ref: NOISSUE
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 2m24s
CI / linter (9.0.X, ubuntu-latest) (push) Successful in 2m30s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Successful in 2m19s

This commit is contained in:
Simon Diesenreiter 2024-12-04 02:01:54 -08:00
parent 48cf7eaf81
commit 2da36b7a05

View File

@ -7,7 +7,8 @@ env:
on: on:
schedule: schedule:
- cron: '15 8 1-25 12 *' - cron: '15 9 1-25 12 *'
- cron: '10 10 1-25 12 *'
# Allows you to run this workflow manually from the Actions tab # Allows you to run this workflow manually from the Actions tab
workflow_dispatch: workflow_dispatch:
@ -26,6 +27,8 @@ jobs:
SESSION_COOKIE: ${{ secrets.AOC_SESSION_COOKIE }} SESSION_COOKIE: ${{ secrets.AOC_SESSION_COOKIE }}
run: | run: |
dotnet run --project LevelInputUpdateRunner/LevelInputUpdateRunner.csproj dotnet run --project LevelInputUpdateRunner/LevelInputUpdateRunner.csproj
git config --global user.email "gitearobot@disi.dev"
git config --global user.name "Gitea Robot"
git add LevelInputProvider/inputs/* git add LevelInputProvider/inputs/*
git commit -m "feat(inputs): add current inputs, ref: NOISSUE" git commit -m "feat(inputs): add current inputs, ref: NOISSUE"
make release make release