Create OAS release #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create OAS release | |
on: | |
workflow_dispatch: | |
jobs: | |
OAS-release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Node environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: install node package | |
run: npm i | |
working-directory: ${{ github.workspace }}/.github/semantic-release | |
- name: Perform release | |
run: | | |
npx semantic-release --dry-run | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
working-directory: ${{ github.workspace }}/.github/semantic-release |