Skip to content

Commit

Permalink
Release idea-reaction v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
m1sk9 committed Aug 18, 2024
1 parent 5fdaa2c commit 2f542ee
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
DISCORD_API_TOKEN=
REDMINE_URL=http://localhost:8080
REDMINE_API_KEY=
TARGET_CHANNEL_ID=
TARGET_GUILD_ID=
TARGET_WEBHOOK_ID=
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "idea-reaction"
version = "0.2.3"
version = "0.3.0"
edition = "2021"
description = "アイデア投稿履歴のリアクションを制限する Discord Bot"
authors = ["m1sk9 <[email protected]>"]
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ FROM rust:1.80.1-bullseye as Builder
WORKDIR /root/app
COPY --chown=root:root . .

RUN cargo build --release --bin idea-reaction
# https://github.com/GiganticMinecraft/idea-reaction/issues/107
RUN cargo build --release --bin idea-reaction --features experiments_thinking_emoji

FROM debian:bullseye-slim as Runner

Check warning on line 9 in Dockerfile

View workflow job for this annotation

GitHub Actions / release

Stage names should be lowercase

StageNameCasing: Stage name 'Runner' should be lowercase More info: https://docs.docker.com/go/dockerfile/rule/stage-name-casing/

Check warning on line 9 in Dockerfile

View workflow job for this annotation

GitHub Actions / release

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Expand Down

0 comments on commit 2f542ee

Please sign in to comment.