ci: remove unnecessary steps

This commit is contained in:
oSumAtrIX 2023-06-12 01:48:29 +02:00
parent 7eb209d853
commit ccc93adae9
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -16,28 +16,16 @@ jobs:
name: Release name: Release
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Cancel previous runs - name: Checkout
uses: styfle/cancel-workflow-action@0.11.0 uses: actions/checkout@v3
- name: Checkout with:
uses: actions/checkout@v3 # Make sure the release step uses its own credentials:
with: # https://github.com/cycjimmy/semantic-release-action#private-packages
# Make sure the release step uses its own credentials: persist-credentials: false
# https://github.com/cycjimmy/semantic-release-action#private-packages fetch-depth: 0
persist-credentials: false - name: Setup semantic-release
fetch-depth: 0 run: npm install
- name: Set up JDK - name: Release
uses: actions/setup-java@v3 env:
with: GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
java-version: '17' run: npm exec semantic-release
distribution: 'zulu'
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
cache: 'npm'
- name: Setup semantic-release
run: npm install
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }}
run: npm exec semantic-release