Skip to content

Commit 032fe70

Browse files
Merge pull request #75 from frmscoe/github-workflows
build: add release simple v1 workflow process in docs
2 parents c91c79d + 522be92 commit 032fe70

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

.github/workflows/release.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
3+
# Please do not attempt to edit this flow without the direct consent from the Tazama team. This file is managed centrally.
4+
5+
# This workflow should only be run when while on the main branch
6+
# Create a tag locally using "git tag vx.x.x" supposed to match latest version in changelog.md
7+
# Then push the release tag created above by running "git push origin vx.x.x"
8+
# The tag will be set on the release page on github with changes made
9+
10+
name: Create a New Release
11+
12+
on:
13+
push:
14+
tags:
15+
- "v*"
16+
17+
permissions:
18+
contents: write
19+
20+
jobs:
21+
release:
22+
name: Release pushed tag
23+
runs-on: ubuntu-22.04
24+
steps:
25+
- name: Create release
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
tag: ${{ github.ref_name }}
29+
run: |
30+
gh release create "$tag" \
31+
--repo="$GITHUB_REPOSITORY" \
32+
--title="${tag#v}" \
33+
--generate-notes
34+
35+
# Usage (while on main branch)
36+
# git tag v1.0.0
37+
# git push origin v1.0.0

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
# Docs
3+
4+
## v1.0
5+
6+
## v1.1.0 (future date, 2024)
7+
8+
* Next change summary here
9+
10+
## v1.0.0 (June 14th, 2024)
11+
12+
* Release first version of docs.

VERSION

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
3+
v1.0.0

0 commit comments

Comments
 (0)