Skip to content

Commit e0fe1e1

Browse files
committed
add release action
1 parent 27c37c5 commit e0fe1e1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/release.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release Dev Container feature
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
publish:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v3
11+
12+
- name: Publish Features
13+
uses: devcontainers/action@v1
14+
with:
15+
publish-features: "true"
16+
base-path-to-features: "./src"
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
permissions:
20+
contents: read
21+
packages: write

0 commit comments

Comments
 (0)