Skip to content

Commit

Permalink
Merge branch 'release/0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
FloGa committed Jan 11, 2025
2 parents d45e194 + 442aadc commit f5bacff
Show file tree
Hide file tree
Showing 14 changed files with 949 additions and 501 deletions.
1 change: 1 addition & 0 deletions .github/env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BINARY_NAME=git-bump
13 changes: 13 additions & 0 deletions .github/targets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[
{ "os": "ubuntu-latest", "target": "aarch64-unknown-linux-gnu" },
{ "os": "ubuntu-latest", "target": "arm-unknown-linux-gnueabihf" },
{ "os": "ubuntu-latest", "target": "i686-unknown-linux-gnu" },
{ "os": "ubuntu-latest", "target": "i686-unknown-linux-musl" },
{ "os": "ubuntu-latest", "target": "x86_64-unknown-linux-gnu" },
{ "os": "ubuntu-latest", "target": "x86_64-unknown-linux-musl" },

{ "os": "macos-latest", "target": "x86_64-apple-darwin" },

{ "os": "windows-latest", "target": "i686-pc-windows-msvc" },
{ "os": "windows-latest", "target": "x86_64-pc-windows-msvc" }
]
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release

on:
push:
branches:
- 'hotfix/**'
- 'release/**'
tags-ignore:
- '_**'

workflow_dispatch:

jobs:
test:
uses: ./.github/workflows/test.yml

call-release-workflow:
uses: FloGa/rust-workflows/.github/workflows/[email protected]
with:
targets-config: ./.github/targets.json
secrets:
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
needs:
- test
10 changes: 10 additions & 0 deletions .github/workflows/release_existing_tags.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Release existing tags

on:
workflow_dispatch:

jobs:
call-release-exisiting-workflow:
uses: FloGa/rust-workflows/.github/workflows/[email protected]
with:
targets-config: ./.github/targets.json
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Test

on:
pull_request:

push:
branches:
- develop
- 'feature/**'

workflow_call:

jobs:
call-test-workflow:
uses: FloGa/rust-workflows/.github/workflows/[email protected]
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Changes in 0.3.0

- Convert application into binary only

There is no actual library code that could be shared, so let's stay with
the main.rs and ditch the lib.rs for now.

- Update README

- Update dependencies

# Changes in 0.2.0

- Add two additional errors for hooks
Expand Down
Loading

0 comments on commit f5bacff

Please sign in to comment.