Skip to content

Commit

Permalink
BUILD: update release pipeline (#28)
Browse files Browse the repository at this point in the history
* BUILD: update release pipeline

* FIX: fix typo in version number

* DOC: update release notes
  • Loading branch information
j-ittner authored Jul 24, 2024
1 parent ce676da commit b61313a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/fluxus-release-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ name: FLUXUS Release Pipeline
on:
push:
# The push trigger will cause the workflow to run when:
# - Commits are pushed directly to the 1.0.x branch or any release/* branch.
# - A pull request is merged into the 1.0.x branch or any release/* branch.
# - Changes are pushed to the 1.0.x or release/* branches through re-bases or
# - Commits are pushed directly to the 1.1.x branch or any release/* branch.
# - A pull request is merged into the 1.1.x branch or any release/* branch.
# - Changes are pushed to the 1.1.x or release/* branches through re-bases or
# fast-forwards.
#
# The GitHub actions variable for the branch being pushed to is `github.ref`.
# values formatted as `refs/heads/<branch-name>`
branches:
- 1.0.x
- 1.1.x
- release/*
pull_request:
# The workflow will run when:
# - A pull request targeting the 1.0.x branch or any branch matching release/* is
# - A pull request targeting the 1.1.x branch or any branch matching release/* is
# created.
# - Commits are pushed to the source branch of an open pull request targeting these
# branches.
Expand All @@ -31,7 +31,7 @@ on:
# result of merging the pull request into the target branch, and it is formatted as
# `refs/pull/<pull-request-number>/merge`.
branches:
- 1.0.x
- 1.1.x
- release/*
schedule: # runs on default branch
- cron: "0 3 * * 1-5" # Every weekday at 3 AM
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Release Notes
=============

*fluxus 1.1*
*fluxus* 1.1
------------

*fluxus* 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion src/fluxus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@
from ._transformer import *
from ._warning import *

__version__ = "1.1rc0r"
__version__ = "1.1rc0"

0 comments on commit b61313a

Please sign in to comment.