Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ab fix release process #557

Merged
merged 12 commits into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/publish-to-gcr-ghcr.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Push to GCR/GHCR GitHub Action
on: push
on:
push:
tags:
- '*' # Push events to every tag not containing /


jobs:
build-and-push-to-gcr-service-account:
name: Build & push to GCR/GHCR
if: startsWith(github.ref, 'refs/tags/') # only publish to registry on tag pushes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Publish Python 🐍 distribution 📦 to PyPI

on: push
on:
push:
tags:
- '*' # Push events to every tag not containing /

jobs:
build:
Expand Down Expand Up @@ -36,7 +39,6 @@ jobs:
publish-to-pypi:
name: >-
Publish Python 🐍 distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
needs:
- build
runs-on: ubuntu-latest
Expand Down
Loading