-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from cbdq-io/release/16-20240514T15Z
Release/16 20240514 t15 z
- Loading branch information
Showing
3 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
name: Git Flow | ||
|
||
on: | ||
# Run on any pull request, or any push of a branch (avoiding pushing of | ||
# tags). | ||
pull_request: | ||
branches: | ||
- '*' | ||
- '**' | ||
push: | ||
branches: | ||
- '*' | ||
- '**' | ||
tags: | ||
- '!*' # This excludes all tags | ||
|
||
jobs: | ||
GitFlow: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Retrieve Release Candidate Name | ||
id: version | ||
run: echo "RELEASE_CANDIDATE_TAG=$( make tag )" >> $GITHUB_OUTPUT | ||
|
||
- name: Git Flow Action | ||
uses: cbdq-io/gitflow-action@v1 | ||
env: | ||
# Setting this environment variable means we can debug by re-running | ||
# workflows and ticking "Enable debug logging". | ||
ACTIONS_RUNNER_DEBUG: ${{ runner.debug }} | ||
|
||
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | ||
with: | ||
# Set the release candidate to be the output of the previous step. | ||
release-candidate: ${{ steps.version.outputs.RELEASE_CANDIDATE_TAG }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters