Skip to content

Commit

Permalink
Create trigger_wiki_update.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dweggg committed Mar 6, 2024
1 parent 1f8b4ca commit 79d0170
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/trigger_wiki_update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Trigger Script on File Push

on:
push:
paths:
- '..\Memoria\main.pdf'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8' # Choose your Python version

- name: Run Python script
run: python wiki_update.py # Replace with your script's filename

0 comments on commit 79d0170

Please sign in to comment.