Skip to content

Support sorting parameter to diary api (#51) #60

Support sorting parameter to diary api (#51)

Support sorting parameter to diary api (#51) #60

Workflow file for this run

name: Deploy to Render
on:
push:
tags:
- '*'
jobs:
build-node:
name: Build and run Node project
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
container: node:20
steps:
- uses: actions/checkout@v3
name: Check out code from Github
- run: npm install
name: Install NPM packages
deploy:
name: Deploy to Render
needs: [build-node]
runs-on: ubuntu-latest
steps:
- name: Deploy to production
uses: johnbeynon/[email protected]
with:
service-id: ${{ secrets.SERVICE_ID }}
api-key: ${{ secrets.RENDER_API_KEY }}