Skip to content

feat(code): add last deployed timestamp to function code #8

feat(code): add last deployed timestamp to function code

feat(code): add last deployed timestamp to function code #8

name: Deploy Destination Function
on:
pull_request:
types: [opened, synchronize, labeled]
push:
branches:
- main
workflow_dispatch:
jobs:
DEV:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main' || github.event.label.name == '!!_RELEASE_TO_QA'
environment: DEV
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install NPM packages
run: npm ci
- name: Run tests
run: npm test
- name: Deploy Destination Function
run: GITHUB_JOB=${{ github.job }} FUNCTION_ID=${{ secrets.FUNCTION_ID }} PUBLIC_API_TOKEN=${{ secrets.PUBLIC_API_TOKEN }} node ./scripts/deployDestinationFunction.js --unhandled-rejections=strict || { exit 1;}
# QA:
# runs-on: ubuntu-latest
# if: github.event.label.name == '!!_RELEASE_TO_QA'
# environment: QA
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version-file: '.nvmrc'
# - name: Install NPM packages
# run: npm ci
# - name: Run tests
# run: npm test
# - name: Deploy Destination Function
# run: GITHUB_JOB=${{ github.job }} FUNCTION_ID=${{ secrets.FUNCTION_ID }} PUBLIC_API_TOKEN=${{ secrets.PUBLIC_API_TOKEN }} node ./scripts/deployDestinationFunction.js --unhandled-rejections=strict || { exit 1;}
# PROD:
# runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/main'
# environment: PROD
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version-file: '.nvmrc'
# - name: Install NPM packages
# run: npm ci
# - name: Run tests
# run: npm test
# - name: Deploy Destination Function
# run: GITHUB_JOB=${{ github.job }} FUNCTION_ID=${{ secrets.FUNCTION_ID }} PUBLIC_API_TOKEN=${{ secrets.PUBLIC_API_TOKEN }} node ./scripts/deployDestinationFunction.js --unhandled-rejections=strict || { exit 1;}