|
2 | 2 |
|
3 | 3 | 💻 Publish a **single** Devcontainer Feature
|
4 | 4 |
|
5 |
| -<div align="center"> |
| 5 | +<p align=center> |
| 6 | + <img height=200 src=https://i.imgur.com/juxM8Xu.png> |
| 7 | +</p> |
6 | 8 |
|
7 |
| -<!-- TODO: Better header image --> |
8 |
| - |
| 9 | +1️⃣ Publishes a **single** feature instead of a whole monorepo \ |
| 10 | +🤝 Works well with [Dev Container Feature polyrepos] \ |
| 11 | +0️⃣ Zero-config; sensible defaults |
9 | 12 |
|
10 |
| -</div> |
11 |
| - |
12 |
| -<!-- TODO: Add emoji bullet points --> |
| 13 | +👀 Check out [devcontainers-community/feature-starter] for a template feature |
| 14 | +repo that uses this action. |
13 | 15 |
|
14 | 16 | ## Usage
|
15 | 17 |
|
| 18 | + |
| 19 | + |
| 20 | + |
16 | 21 | To get started, just create a new GitHub Repository that has a valid
|
17 | 22 | `devcontainer-feature.json` manifest file and a working `install.sh` script.
|
18 | 23 | Then add this to a GitHub Workflow like `.github/workflows/publish-feature.yml`:
|
|
38 | 43 | - uses: devcontainers-community/publish-feature@v1
|
39 | 44 | ```
|
40 | 45 |
|
41 |
| -```jsonc |
42 |
| -// devcontainer.json |
43 |
| -{ |
44 |
| - "features": { |
45 |
| - "ghcr.io/octocat/my-feature": {} |
46 |
| - } |
47 |
| -} |
48 |
| -``` |
49 |
| - |
50 |
| -```yml |
51 |
| -# publish-feature.yml |
52 |
| -name: Publish feature |
53 |
| -on: |
54 |
| - release: |
55 |
| - types: published |
56 |
| - workflow_dispatch: |
57 |
| -concurrency: |
58 |
| - group: ${{ github.workflow }} |
59 |
| - cancel-in-progress: true |
60 |
| -jobs: |
61 |
| - publish-feature: |
62 |
| - runs-on: ubuntu-latest |
63 |
| - steps: |
64 |
| - - uses: actions/checkout@v3 |
65 |
| - - uses: docker/login-action@v2 |
66 |
| - with: |
67 |
| - registry: ghcr.io |
68 |
| - username: ${{ github.actor }} |
69 |
| - password: ${{ secrets.MY_FATURES_GITHUB_TOKEN }} |
70 |
| - - uses: devcontainers-community/publish-feature@v1 |
71 |
| - with: |
72 |
| - # The '*' will be replaced with 'id' from 'devcontainer-feature.json'. |
73 |
| - image: ghcr.io/octocat/my-features/* |
74 |
| -``` |
| 46 | +This will publish the Dev Container Feature to |
| 47 | +your-username/features/id-of-your-feature and can be used like this: |
75 | 48 |
|
76 | 49 | ```jsonc
|
77 | 50 | // devcontainer.json
|
|
84 | 57 |
|
85 | 58 | ### Inputs
|
86 | 59 |
|
87 |
| -<!-- TODO: Describe inputs --> |
| 60 | +- **`path`:** Where the `devcontainer-feature.json` manifest is located. The |
| 61 | + default is `.`. |
| 62 | + |
| 63 | +- **`files`:** Which files to include in the OCI published image. You can |
| 64 | + specify a multiline list of glob patterns to include in the package. By |
| 65 | + default this includes everything. The `README.md`, `LICENSE`, and |
| 66 | + `devcontainer-feature.json` files will always be included in the generated |
| 67 | + image. |
| 68 | + |
| 69 | +- **`source`:** What to put for the `org.opencontainers.source` annotation on |
| 70 | + the image. This defaults to the current GitHub repository using |
| 71 | + `${{ github.server_url }}` and `${{ github.repository }}`. |
| 72 | + |
| 73 | +- **`image`:** The destination image to push to. You can use a `*` which will be |
| 74 | + replaced by the `id` field from the `devcontainer-feature.json` that was used. |
| 75 | + By default this is `ghcr.io/${{ github.repository_owner }}/features/*` |
| 76 | + |
| 77 | +- **`latest`:** A boolean flag to indicate whether or not to push to the |
| 78 | + `:latest` tag of the image. By default this is `true`. Set this to `false` if |
| 79 | + you're publishing an older version. |
88 | 80 |
|
89 | 81 | ## Development
|
90 | 82 |
|
91 |
| -<!-- TODO: Provide development blurb --> |
| 83 | + |
| 84 | + |
| 85 | +This GitHub Action is written using Deno. At some point in the future, it may be |
| 86 | +transitioned to use plain Node.js. At present, though, we use a wrapper script |
| 87 | +to download the self-contained `deno` binary locally and then run the `main.ts` |
| 88 | +script. |
| 89 | + |
| 90 | +To get started editing, fork this repo and make your changes. To test those |
| 91 | +changes, push them to your own `main` branch or open a PR! We use GitHub |
| 92 | +Actions-ception to test this Action using GitHub Actions. |
| 93 | + |
| 94 | +<!-- prettier-ignore-start --> |
| 95 | +[dev container feature polyrepos]: https://github.com/devcontainers-community/features |
| 96 | +[devcontainers-community/feature-starter]: https://github.comm/devcontainers-community/feature-starter |
| 97 | +<!-- prettier-ignore-end --> |
0 commit comments