From ad6f3e32fc4eb476b32cfde252ac21f6b0e2049f Mon Sep 17 00:00:00 2001 From: Elin Angelov Date: Wed, 24 Jul 2024 09:05:12 +0300 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..d8b31a1 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,33 @@ +name: Release +on: + push: + branches: + - master + +permissions: + contents: read +jobs: + release: + name: Release + runs-on: ubuntu-latest + permissions: + contents: write + issues: write + pull-requests: write + id-token: write + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "lts/*" + - name: Install dependencies + run: npm i --package-lock-only && npm clean-install + - name: Release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + run: npx semantic-release