Merge pull request #133 from qase-tms/EXEC-478 #117
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: publish | |
on: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: { node-version: 18, cache: npm } | |
- run: npm ci --omit=optional -f | |
- run: npm run build | |
- uses: readmeio/rdme@v8 | |
with: | |
rdme: openapi ./api.yaml --key=${{ secrets.README_KEY }} --id=6172e1f931427d3f983e34ff | |
- uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_ICON: https://github.com/github.png?size=64 | |
SLACK_USERNAME: GitHub Actions | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |