From bbd5ac84dec07f325626d2b5624ed3440d539e6d Mon Sep 17 00:00:00 2001 From: atropos Date: Tue, 30 Apr 2024 22:45:54 +0100 Subject: [PATCH] Clean up and fix of pipeline --- .copier-answers.yml | 2 +- .github/workflows/publish.yaml | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index cf890de..3307cf4 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 4c4a10a +_commit: f1b198b _src_path: git@github.com:atropos112/template-python-pkg.git author: atropos email: sv7n@pm.me diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 5e54edf..5014b29 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -49,4 +49,7 @@ jobs: git add pyproject.toml git commit -m "Update pyproject.toml version to $VERSION" - name: Push changes - run: git push origin HEAD:main + run: | + git pull origin main + git push origin HEAD:main +