From 8864488eac02f58c13873b737e2d1162f3324fb6 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 11 Sep 2024 21:44:31 +0300 Subject: [PATCH] ci: Add workflow --- .github/workflows/release.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 000000000..7d655ab1b --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,16 @@ +name: Release +on: + push: +jobs: + publish-github-registry: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up node & dependencies + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: "npm" + - run: yarn install + - run: yarn build + - run: yarn publish