From 4b508f61d19fcb1c0db3a4d32f88898200614e73 Mon Sep 17 00:00:00 2001 From: Quentin Goinaud Date: Wed, 17 Jul 2024 11:14:54 +0000 Subject: [PATCH] - --- .devcontainer/devcontainer.json | 10 ++++++++++ .github/workflows/push.yml | 2 ++ 2 files changed, 12 insertions(+) create mode 100644 .devcontainer/devcontainer.json 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 ]