Skip to content
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
21 changes: 18 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
git config --local user.name "GitHub Action"
git add Cargo.toml
git commit -m "chore: bump version to ${{ needs.semantic-version.outputs.version }}" || exit 0
git push || exit 0

- name: Create Release
id: create_release
Expand Down Expand Up @@ -161,6 +162,12 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
ref: main
fetch-depth: 1

- name: Pull latest changes
run: git pull origin main

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -223,6 +230,12 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
ref: main
fetch-depth: 1

- name: Pull latest changes
run: git pull origin main

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -279,10 +292,12 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
ref: main
fetch-depth: 1

- name: Update Cargo.toml version
run: |
sed -i.bak 's/^version = ".*"/version = "${{ needs.semantic-version.outputs.version }}"/' Cargo.toml && rm Cargo.toml.bak
- name: Pull latest changes
run: git pull origin main

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "repos"
version = "0.0.2"
version = "0.0.3"
edition = "2024"

[dependencies]
Expand Down
Loading