forked from rapidsai/devcontainers
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (27 loc) · 845 Bytes
/
release-features.yml
File metadata and controls
33 lines (27 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Release features
on:
workflow_call:
workflow_dispatch:
jobs:
release-features:
name: Release features
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
- name: Copy common scripts into features
uses: ./.github/actions/copy-common-scripts
- name: Install devcontainers CLI
uses: ./.github/actions/install-devcontainers-cli
- name: Release features
uses: devcontainers/action@v1
with:
generate-docs: true
publish-features: true
disable-repo-tagging: true
base-path-to-features: "./features/src"
features-namespace: "${{ github.repository }}/features"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}