diff options
author | Josh Spicer <joshspicer@github.com> | 2022-06-03 17:49:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-03 17:49:26 +0300 |
commit | 3b55d6e958b0554289e272511e57e14880d5f526 (patch) | |
tree | fc7efa782189137ff599464624271d2d77321484 /.github/devcontainers-action/sync-action.sh | |
parent | c12a205ab8e195541acfe0cb654b4888e16ea05c (diff) |
add v2 action
Diffstat (limited to '.github/devcontainers-action/sync-action.sh')
-rwxr-xr-x | .github/devcontainers-action/sync-action.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/devcontainers-action/sync-action.sh b/.github/devcontainers-action/sync-action.sh new file mode 100755 index 0000000..4bada95 --- /dev/null +++ b/.github/devcontainers-action/sync-action.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Temporary! + +pushd /workspaces/features/.github/devcontainers-action + +rm ./action.yml +rm -rf ./dist +rm -rf ./lib + +cp /home/codespace/action/action.yml ./action.yml +cp -r /home/codespace/action/dist ./dist +cp -r /home/codespace/action/lib ./lib
\ No newline at end of file |