Skip to content

Fix metric costs

Fix metric costs #132

Workflow file for this run

name: Publish OpenAPI to GitHub Pages
on:
push:
branches: [main]
jobs:
gh-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
node-version: '16.x'
- name: Build
run: |
npm ci
npm run build
npm run html
- run: aws s3 sync --delete --acl public-read _build s3://swagger.billabear.com
shell: bash
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }}