Skip to content

Commit 12fb7b5

Browse files
authored
fix #1
1 parent 83bb1dd commit 12fb7b5

File tree

1 file changed

+48
-42
lines changed

1 file changed

+48
-42
lines changed

README.md

+48-42
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,22 @@
22

33
💻 Publish a **single** Devcontainer Feature
44

5-
<div align="center">
5+
<p align=center>
6+
<img height=200 src=https://i.imgur.com/juxM8Xu.png>
7+
</p>
68

7-
<!-- TODO: Better header image -->
8-
![](https://picsum.photos/600/400)
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
912

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.
1315

1416
## Usage
1517

18+
![GitHub Actions](https://img.shields.io/static/v1?style=for-the-badge&message=GitHub+Actions&color=2088FF&logo=GitHub+Actions&logoColor=FFFFFF&label=)
19+
![GitHub](https://img.shields.io/static/v1?style=for-the-badge&message=GitHub&color=181717&logo=GitHub&logoColor=FFFFFF&label=)
20+
1621
To get started, just create a new GitHub Repository that has a valid
1722
`devcontainer-feature.json` manifest file and a working `install.sh` script.
1823
Then add this to a GitHub Workflow like `.github/workflows/publish-feature.yml`:
@@ -38,40 +43,8 @@ jobs:
3843
- uses: devcontainers-community/publish-feature@v1
3944
```
4045
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:
7548
7649
```jsonc
7750
// devcontainer.json
@@ -84,8 +57,41 @@ jobs:
8457

8558
### Inputs
8659

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.
8880

8981
## Development
9082

91-
<!-- TODO: Provide development blurb -->
83+
![Deno](https://img.shields.io/static/v1?style=for-the-badge&message=Deno&color=000000&logo=Deno&logoColor=FFFFFF&label=)
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

Comments
 (0)