From dcdad1ecbe05a4a2ebd2755ba591a35ceadbf54d Mon Sep 17 00:00:00 2001 From: Space and Time Release <136127507+SxT-Release@users.noreply.github.com> Date: Wed, 29 May 2024 06:25:04 -0700 Subject: [PATCH] feat(ci): Create release job --- .github/workflows/release.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index af0aa4e87..000000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Release - -on: - push: - branches: - - main - -jobs: - release: - environment: deploy - runs-on: large-8-core-32gb-22-04 - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - token: ${{ secrets.GH_TOKEN }} - - - run: git config --global --add safe.directory $(realpath .) - - - name: Setup node - uses: actions/setup-node@v3 - with: - node-version: "18.x" - - - name: Semantic Release - run: | - npm install semantic-release - npx semantic-release - env: - GH_TOKEN: ${{ secrets.GH_TOKEN }}