From c7065f0c359ecb4edf9e1cebc711c0f6c64ab6c5 Mon Sep 17 00:00:00 2001 From: Phillip Tarrant Date: Mon, 26 Jan 2026 15:13:49 -0600 Subject: [PATCH] fixing workflow to use python and installing node there --- .gitea/workflows/weather-alerts.yml | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/.gitea/workflows/weather-alerts.yml b/.gitea/workflows/weather-alerts.yml index b165847..a661b18 100644 --- a/.gitea/workflows/weather-alerts.yml +++ b/.gitea/workflows/weather-alerts.yml @@ -8,35 +8,32 @@ on: jobs: check-weather: runs-on: ubuntu-latest + container: + image: python:3.11-slim + timeout-minutes: 15 + steps: - - name: Install Python + - name: Install Node.js (required for actions) run: | - apt-get update - apt-get install -y python3 python3-pip python3-venv git + apt-get update && apt-get install -y nodejs git - name: Checkout repository - env: - GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} - SERVER_URL: ${{ github.server_url }} - REPOSITORY: ${{ github.repository }} - run: | - SERVER_HOST="${SERVER_URL#https://}" - SERVER_HOST="${SERVER_HOST#http://}" - git clone --depth 1 "https://oauth2:${GITEA_TOKEN}@${SERVER_HOST}/${REPOSITORY}.git" . - git config user.name "Gitea Actions" - git config user.email "actions@gitea.local" + uses: actions/checkout@v4 - name: Install dependencies - run: pip install --break-system-packages -r requirements.txt + run: pip install -r requirements.txt - name: Run weather alerts env: VISUALCROSSING_API_KEY: ${{ secrets.VISUALCROSSING_API_KEY }} NTFY_ACCESS_TOKEN: ${{ secrets.NTFY_ACCESS_TOKEN }} - run: python3 -m app.main + run: python -m app.main - name: Commit state changes run: | + git config --global user.name "Gitea Actions" + git config --global user.email "actions@gitea.local" + git config --global --add safe.directory "$GITHUB_WORKSPACE" git add data/state.json git diff --staged --quiet || git commit -m "chore: update weather alert state [skip ci]" git push