Skip to content

Commit

Permalink
feat: conventional commits
Browse files Browse the repository at this point in the history
this change adds conventional commit version updates
  • Loading branch information
lyledouglass committed Jun 1, 2024
1 parent 3fe14ed commit 35c0bd4
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 18 deletions.
56 changes: 39 additions & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,34 @@
on:
push:
tags:
- "v*"
branches: [main]
paths:
- "versionHelper.go"
pull_request:
branches: [main]

jobs:

build:
outputs:
next: ${{ steps.get-version.outputs.next }}
bump: ${{ steps.get-version.outputs.bump }}

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/checkout@v4



- name: Get Next version
id: get-version
uses: ietf-tools/[email protected]
with:
token: ${{ github.token }}
branch: ${{ github.ref }}
noVersionBumpBehavior: 'current'

- name: debug
run: |
echo ${{ steps.get-version.outputs.next }}
echo ${{ steps.get-version.outputs.bump }}
- name: Set up Go
uses: actions/setup-go@v4
Expand All @@ -26,14 +41,16 @@ jobs:
- name: ls debug
run: ls -a && pwd

- name: Update version in main.go
shell: bash
run: |
new_version=${{ steps.get-version.outputs.nextStrict }}
sed -i "s/const version = \"[0-9]*\.[0-9]*\.[0-9]*\"/const version = \"$new_version\"/g" ${{ github.workspace }}/main.go
- name: Build for Windows (amd64)
run: |
env GOOS=windows GOARCH=amd64 go build -o /home/runner/work/wowtools/wowtools/build/wowtools.exe
# Go Tests are acting up due to the W32 module - I've disabled all the tests but it still spits errors out. Disabling for now as these are all local tests anyways
#- name: Test
#run: go test -v ./...

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -44,17 +61,22 @@ jobs:
release:
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/')
if: ${{ needs.build.outputs.bump != '' && github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v3

- name: Download Windows Artifacts
uses: actions/download-artifact@v2
with:
name: WoWTools-AMD64

- name: Create Release
uses: softprops/action-gh-release@v1
- uses: actions/checkout@v4
with:
files: |
wowtools.exe
fetch-depth: 0

- name: Create Release
shell: bash
run: >
gh release create ${{ needs.build.outputs.next }}
wowtools.exe
--title ${{ needs.build.outputs.next }}
--generate-notes --notes-start-tags
${{ needs.build.outputs.next }}
4 changes: 3 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ import (

func main() {

const version = "5.0.7"
// in the github actions, the version is set by the build script at
// build time and will be set via conventioanl commits
const version = "0.0.0"

var (
logging string
Expand Down

0 comments on commit 35c0bd4

Please sign in to comment.