feat(remote): add Cloudflare archive mode #44
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: docker | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - name: Build image | |
| run: docker build --pull -t discrawl:ci . | |
| - name: Smoke test image | |
| run: | | |
| set -euo pipefail | |
| docker run --rm discrawl:ci --version | |
| docker run --rm discrawl:ci --help | |
| docker run --rm --entrypoint git discrawl:ci --version |