ci: bugfixes with workflows, ref: NOISSUE #3

Merged
simon merged 1 commits from sidiesen/update into main 2024-12-02 06:43:37 +01:00
3 changed files with 7 additions and 1 deletions
Showing only changes of commit 1dd3cfea09 - Show all commits

View File

@ -2,6 +2,9 @@
name: CI
env:
SKIP_MAKE_SETUP_CHECK: 'true'
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch

View File

@ -2,6 +2,9 @@ name: Upload Python Package
permissions:
contents: write
env:
SKIP_MAKE_SETUP_CHECK: 'true'
on:
push:
# Sequence of patterns matched against refs/tags

View File

@ -4,7 +4,7 @@ USING_POETRY=$(shell grep "tool.poetry" pyproject.toml && echo "yes")
.PHONY: issetup
issetup:
@[ -f .git/hooks/commit-msg ] || (echo "You must run 'make setup' first to initialize the repo!" && exit 1)
@[ -f .git/hooks/commit-msg ] || [ -v SKIP_MAKE_SETUP_CHECK ] || (echo "You must run 'make setup' first to initialize the repo!" && exit 1)
.PHONY: setup
setup: