Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Version bump and compilation action check #407

Merged
merged 3 commits into from
Jul 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,24 @@ env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'

jobs:
rust_changes:
runs-on: ubuntu-latest
outputs:
rust_src_changed: ${{ steps.filter.outputs.rust_src }}
steps:
- uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
rust_src:
- 'src/**'
- 'bootstrap.sh'
- 'Cargo.toml'
- 'pyproject.toml'
check_linux:
needs: rust_changes
if: ${{ needs.rust_changes.outputs.rust_src_changed == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -34,6 +51,8 @@ jobs:
args: --release
rust-toolchain: nightly
check_win:
needs: rust_changes
if: ${{ needs.rust_changes.outputs.rust_src_changed == 'true' }}
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bcml"
authors = ["Caleb Smith"]
version = "3.9.22"
version = "3.9.23"
edition = "2021"
readme = "docs/README.md"

Expand Down
2 changes: 1 addition & 1 deletion bcml/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_MAJOR=3
_MINOR=9
_PATCH="22"
_PATCH="23"

VERSION = f"{_MAJOR}.{_MINOR}.{_PATCH}"
USER_VERSION = f"""{_MAJOR}.{_MINOR}.{_PATCH[0:1]} {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "bcml"
version = "3.9.22"
version = "3.9.23"
description = "A mod manager for The Legend of Zelda: Breath of the Wild"
author = "NiceneNerd"
author_email = "macadamiadaze@gmail.com"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="bcml",
version="3.9.22",
version="3.9.23",
author="NiceneNerd",
author_email="macadamiadaze@gmail.com",
description="A mod manager for The Legend of Zelda: Breath of the Wild",
Expand Down