diff --git a/.forgejo/workflows/Dockerfile b/.forgejo/workflows/Dockerfile new file mode 100644 index 0000000..093f841 --- /dev/null +++ b/.forgejo/workflows/Dockerfile @@ -0,0 +1,32 @@ +FROM ubuntu:22.04 + +# Avoid prompts from apt +ENV DEBIAN_FRONTEND=noninteractive + +# Install essential tools +RUN apt-get update && apt-get install -y \ + git \ + curl \ + wget \ + openssh-client \ + ca-certificates \ + build-essential \ + nodejs \ + npm \ + && rm -rf /var/lib/apt/lists/* + +# Setup Rust +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y +ENV PATH="/root/.cargo/bin:${PATH}" + +# Verify installations +RUN node --version && \ + npm --version && \ + rustc --version && \ + cargo --version + +# Set working directory +WORKDIR /github/workspace + +# Default command (can be overridden) +CMD ["/bin/bash"] diff --git a/.forgejo/workflows/daily-collect.yaml b/.forgejo/workflows/daily-collect.yaml index 9a1cb3a..9fcce45 100644 --- a/.forgejo/workflows/daily-collect.yaml +++ b/.forgejo/workflows/daily-collect.yaml @@ -11,46 +11,28 @@ jobs: update-feed: runs-on: ubuntu-latest container: - image: ubuntu:22.04 - steps: - - name: Install Dependencies - run: | - apt-get update -y && apt-get install -y \ - git \ - openssh-client \ - curl \ - ca-certificates \ - npm \ - nodejs + # Reference the Dockerfile in your repository + dockerfile: .forgejo/actions/Dockerfile + steps: - name: Checkout repository uses: actions/checkout@v4 with: repository: bpmcdevitt/github_poc_collector - # Use the appropriate ref if you want a specific branch/commit - # ref: main - # If you need to use SSH ssh-key: ${{ secrets.TOKEN_NAME }} - # If you have specific known hosts ssh-known-hosts: git.mcdevitt.tech - - name: Setup Rust + - name: Setup SSH + env: + SSH_PRIVATE_KEY: ${{ secrets.TOKEN_NAME }} run: | - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - source "$HOME/.cargo/env" - rustup default stable - rustc --version - cargo --version - - - name: Cache Cargo dependencies - run: | - mkdir -p ~/.cargo/registry - mkdir -p ~/.cargo/git - mkdir -p target + mkdir -p ~/.ssh + echo "$SSH_PRIVATE_KEY" | tr -d '\r' > ~/.ssh/id_rsa + chmod 600 ~/.ssh/id_rsa + ssh-keyscan git.mcdevitt.tech >> ~/.ssh/known_hosts - name: Run recent feed update run: | - source "$HOME/.cargo/env" cargo run -- --feed recent - name: Commit and push results