Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
asdf
  • Loading branch information
cycle-five committed Dec 9, 2024
1 parent 3120241 commit ce993ec
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
# but also really annoying to build CI around when it needs secrets to work right.)
- id: plan
run: |
cargo dist ${{ (!github.event.pull_request && format('host --steps=create --tag={0}', github.ref_name)) || 'plan' }} --output-format=json > plan-dist-manifest.json
dist ${{ (!github.event.pull_request && format('host --steps=create --tag={0}', github.ref_name)) || 'plan' }} --output-format=json > plan-dist-manifest.json
echo "cargo dist ran successfully"
cat plan-dist-manifest.json
echo "manifest=$(jq -c "." plan-dist-manifest.json)" >> "$GITHUB_OUTPUT"
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Build artifacts
run: |
# Actually do builds and make zips and whatnot
cargo dist build ${{ needs.plan.outputs.tag-flag }} --print=linkage --output-format=json ${{ matrix.dist_args }} > dist-manifest.json
dist build ${{ needs.plan.outputs.tag-flag }} --print=linkage --output-format=json ${{ matrix.dist_args }} > dist-manifest.json
echo "cargo dist ran successfully"
- id: cargo-dist
name: Post-build
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
- id: cargo-dist
shell: bash
run: |
cargo dist build ${{ needs.plan.outputs.tag-flag }} --output-format=json "--artifacts=global" > dist-manifest.json
dist build ${{ needs.plan.outputs.tag-flag }} --output-format=json "--artifacts=global" > dist-manifest.json
echo "cargo dist ran successfully"
# Parse out what we just built and upload it to scratch storage
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
- id: host
shell: bash
run: |
cargo dist host ${{ needs.plan.outputs.tag-flag }} --steps=upload --steps=release --output-format=json > dist-manifest.json
dist host ${{ needs.plan.outputs.tag-flag }} --steps=upload --steps=release --output-format=json > dist-manifest.json
echo "artifacts uploaded and released successfully"
cat dist-manifest.json
echo "manifest=$(jq -c "." dist-manifest.json)" >> "$GITHUB_OUTPUT"
Expand Down
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@
- [ ] Support discordbotlist.com (voting service).
- [ ] Decide on whether to use ephemeral for admin messages.

## v0.3.16-alpha.3 (2024/12/12)
## v0.3.16 (2024/12/12)
- Commands each show up and work only where they are supposed to (guilds, dms, etc).

## v0.3.16-alpha.3 (2024/12/05)
## v0.3.16-alpha.3 (2024/12/09)
- re-enable the commands that were disabled in the last release
for the serenity-next branch.
- Got the rusty_ytdl library with the compose to an Input working.
The result is the bot starts up and responds and queues songs must faster.
The result is the bot starts up and responds and queues songs much faster.
- Youtube suggestions are now working again.

## v0.3.16-alpha.2 (2024/12/01)
- [x] update to serenity-next branch
Expand Down
2 changes: 1 addition & 1 deletion crack-core/src/messaging/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub async fn build_log_embed_thumb<'a>(
id: &'a str,
description: &'a str,
avatar_url: &'a str,
) -> Result<CreateEmbed<'a>, CrackedError> {
) -> CrackedResult<CreateEmbed<'a>> {
let now_time_str = chrono::Local::now().format("%Y-%m-%d %H:%M:%S").to_string();
let footer_str = format!("{} | {} | {}", guild_name, id, now_time_str);
let footer = CreateEmbedFooter::new(footer_str);
Expand Down
6 changes: 3 additions & 3 deletions dist-workspace.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[workspace]
members = ["cargo:crack-cli"]

# Config for 'cargo dist'
# Config for 'dist'
[dist]
# Skip checking whether the specified configuration files are up to date
allow-dirty = ["ci"]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.21.0"
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.25.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
Expand Down

0 comments on commit ce993ec

Please sign in to comment.