diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..74adb89 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,10 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + "ghcr.io/devcontainers/features/node": { + "version": "22" + }, + "ghcr.io/devcontainers-contrib/features/corepack:1": {}, + "ghcr.io/devcontainers-contrib/features/tsx:1": {} + } +} diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 218d376..5938120 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -3,6 +3,8 @@ name: Electron Forge CI/CD on: push: branches: [ main ] + tags: + - "*" pull_request: branches: [ main ]