Skip to content

feat: allow negative numbers in price body field #25

feat: allow negative numbers in price body field

feat: allow negative numbers in price body field #25

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
timeout-minutes: 10
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Doppler CLI
uses: dopplerhq/cli-action@v2
- name: Install Serverless Framework
run: npm install -g serverless
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Serverless AWS authentication
run: sls config credentials --provider aws --key ${{ secrets.AWS_KEY }} --secret ${{ secrets.AWS_SECRET }}
- name: Creating env file
run: doppler secrets download --no-file --format yaml > .env.yml
env:
DOPPLER_TOKEN: ${{ secrets.DOPPLER_TOKEN }}
- name: Deploy
run: pnpm deploy-sls --stage prod --conceal