Update autoupdate workflow. LOL.

This commit is contained in:
2025-12-03 00:47:35 +00:00
parent 90e0375a83
commit 70ac227613
+10 -3
View File
@@ -56,6 +56,13 @@ jobs:
- name: Trigger release workflow - name: Trigger release workflow
if: steps.auto-commit.outputs.changes_detected == 'true' if: steps.auto-commit.outputs.changes_detected == 'true'
run: gh workflow run release.yml uses: actions/github-script@v7
env: with:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'lukaszraczylo',
repo: 'lolcathost',
workflow_id: 'release.yml',
ref: 'main'
})