From 3c2eddfea0e742bd8b55600c060444eb33a16418 Mon Sep 17 00:00:00 2001 From: Pelagic Date: Mon, 13 May 2024 15:03:46 +0300 Subject: [PATCH] Attempting to fix the publish action. --- .gitea/workflows/publish.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 46d1341..eb7d5c5 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -6,6 +6,8 @@ jobs: build: runs-on: ubuntu-latest + # Bizzarre bug that needed the below according to https://forum.gitea.com/t/gitea-actions-with-python/7605/3 + container: catthehacker/ubuntu:act-latest steps: - name: Checkout code @@ -17,6 +19,7 @@ jobs: with: # Semantic version range syntax or exact version of a Python version python-version: '3.12.3' + cache: 'pip' - name: Display Python version run: python -c "import sys; print(sys.version)"