Skip to content

Commit aa57a99

Browse files
authored
Merge pull request #6 from quantonganh/task-7-remove-border-cell
Task 7 remove border cell
2 parents 6e64fc9 + 204636e commit aa57a99

File tree

4 files changed

+178
-167
lines changed

4 files changed

+178
-167
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,16 @@ jobs:
5454
steps:
5555
- uses: actions/checkout@v4
5656

57+
- name: Set version
58+
run: |
59+
cargo install cargo-edit
60+
cargo-set-version set-version ${GITHUB_REF#refs/tags/}
61+
5762
- name: Publish
5863
if: matrix.build == 'x86_64-linux'
5964
run: |
6065
cargo login ${{ secrets.CRATES_IO_API_TOKEN }}
61-
cargo publish --target x86_64-unknown-linux-gnu
66+
cargo publish --target x86_64-unknown-linux-gnu --allow-dirty
6267
6368
- name: Install ${{ matrix.rust }} toolchain
6469
uses: dtolnay/rust-toolchain@master

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "tetris-tui"
3-
version = "0.1.9"
3+
version = "0.2.0"
44
edition = "2021"
5-
authors = ["Quan Tong <quantonganh@email.com>"]
5+
authors = ["Quan Tong <quantonganh@gmail.com>"]
66
license = "MIT OR Apache-2.0"
77
description = "Tetris in the terminal"
88
readme = "README.md"

0 commit comments

Comments
 (0)