From 720b981548951345a95bc9aa7eaf129a90f9884d Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sun, 12 Jan 2025 18:39:34 +0000 Subject: [PATCH] fix(ci): fix syntax --- .gitea/workflows/ci.yml | 2 +- .gitea/workflows/release.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 630c521..44cd5d9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,7 +5,7 @@ on: jobs: ci: - uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/ci-python-uv-with-docker.yml + uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/ci-python-uv-with-docker.yml@main with: python-version: 3.13 secrets: diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 2e87049..1631474 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -6,7 +6,7 @@ on: jobs: test: - uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/ci-python-uv-with-docker.yml + uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/ci-python-uv-with-docker.yml@main with: python-version: 3.13 secrets: @@ -15,12 +15,12 @@ jobs: create_release: name: Create Release - uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/create-release.yml + uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/create-release.yml@main create_docker: name: Create Docker Image needs: create_release if: ${{ needs.create_release.outputs.success == 'true' }} - uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/build-push-docker.yml + uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/build-push-docker.yml@main with: release: ${{ needs.create_release.outputs.release_name }}