Skip to content

Commit 8c6e3be

Browse files
committed
chore: rename agent-pdf/ to agents/ for discoverability
1 parent 2ded4af commit 8c6e3be

14 files changed

Lines changed: 13 additions & 13 deletions

File tree

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
name: Agent PDF
1+
name: Agents
22

33
on:
44
push:
55
branches:
66
- main
77
paths:
8-
- agent-pdf/**
9-
- .github/workflows/agent-pdf.yaml
8+
- agents/**
9+
- .github/workflows/agents.yaml
1010
pull_request:
1111
branches:
1212
- main
1313
paths:
14-
- agent-pdf/**
15-
- .github/workflows/agent-pdf.yaml
14+
- agents/**
15+
- .github/workflows/agents.yaml
1616

1717
jobs:
1818
check:
1919
runs-on: ubuntu-latest
2020
defaults:
2121
run:
22-
working-directory: agent-pdf
22+
working-directory: agents
2323

2424
steps:
2525
- name: Checkout code
@@ -36,8 +36,8 @@ jobs:
3636
path: |
3737
~/.cargo/registry
3838
~/.cargo/git
39-
agent-pdf/target
40-
key: ${{ runner.os }}-cargo-${{ hashFiles('agent-pdf/Cargo.lock') }}
39+
agents/target
40+
key: ${{ runner.os }}-cargo-${{ hashFiles('agents/Cargo.lock') }}
4141
restore-keys: ${{ runner.os }}-cargo-
4242

4343
- name: Format
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
repo: SimplePDF/simplepdf-embed
77
branch: main
88
deploy_on_push: true
9-
source_dir: agent-pdf
9+
source_dir: agents
1010
dockerfile_path: Dockerfile
1111
instance_count: 1
1212
instance_size_slug: basic-xs
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "agent-pdf"
2+
name = "agents"
33
version = "0.1.0"
44
edition = "2021"
55

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ RUN cargo build --release
77

88
FROM debian:bookworm-slim
99
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
10-
COPY --from=builder /app/target/release/agent-pdf /usr/local/bin/agent-pdf
10+
COPY --from=builder /app/target/release/agents /usr/local/bin/agents
1111
EXPOSE 8080
12-
CMD ["agent-pdf"]
12+
CMD ["agents"]
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)