aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yaml
diff options
context:
space:
mode:
authorJosh Spicer <joshspicer@github.com>2022-07-18 20:40:36 +0300
committerGitHub <noreply@github.com>2022-07-18 20:40:36 +0300
commit3042260fc17c80f838a837c90cc9b2371bfb6365 (patch)
tree634e90677e80e755b7e7b3d6d64bdcfcc75c44e6 /.github/workflows/release.yaml
parentb0e2f6ac23afbdef657e4b4973c02ec35a30c7bd (diff)
remove hardcoded devcontainer-cli (#65)
remove hardcoded devcontainer-cli in favor of fetching latest from npm dynamically
Diffstat (limited to '.github/workflows/release.yaml')
-rw-r--r--.github/workflows/release.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 4b59eb9..0b33120 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -2,7 +2,7 @@ name: "(Release) Release dev container features (v2)"
on:
push:
tags:
- - "v0.0.2" # Temporary
+ - "v*"
workflow_dispatch:
jobs:
@@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- name: Generate tgz
- uses: ./.github/devcontainers-action # devcontainers/action
+ uses: ./.github/devcontainers-action # TODO: Once 'devcontainers/action' is published, use that.
with:
publish-features: "true"
base-path-to-features: "./src"