Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disabled deploy
Browse files Browse the repository at this point in the history
TeunHuijben committed Jan 23, 2025
1 parent 76063d0 commit 45488c3
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions .github/workflows/python-lint-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
name: Python tests + deploy
# on:
# push:
# branches:
# - main
# tags:
# - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
# pull_request:
# branches:
# - main
on:
push:
branches:
- main
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
pull_request:
branches:
- main
- "v*"

jobs:
test:
@@ -51,7 +55,8 @@ jobs:
# github secrets (see readme for details)
needs: [test]
runs-on: ubuntu-latest
if: contains(github.ref, 'tags')
# if: contains(github.ref, 'tags')
if: false
steps:
- uses: actions/checkout@v4
- name: Set up Python
@@ -75,8 +80,8 @@ jobs:
create-github-release:
name: Create GitHub Release
if: startsWith(github.ref, 'refs/tags')
needs: [test, build-and-deploy]
runs-on: ubuntu-latest
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create GitHub Release with Notes

0 comments on commit 45488c3

Please sign in to comment.