Skip to content

Merge pull request #252 from the-hideout/historical-price-min #207

Merge pull request #252 from the-hideout/historical-price-min

Merge pull request #252 from the-hideout/historical-price-min #207

Workflow file for this run

name: deploy
on:
push:
branches:
- main
permissions:
contents: read
jobs:
deployment-check:
runs-on: ubuntu-latest
outputs: # set outputs for use in downstream jobs
continue: ${{ steps.deployment-check.outputs.continue }}
steps:
# https://github.com/github/branch-deploy/blob/d3c24bd92505e623615b75ffdfac5ed5259adbdb/docs/merge-commit-strategy.md
- name: deployment check
uses: github/[email protected]
id: deployment-check
with:
merge_deploy_mode: "true"
environment: production
deploy:
if: ${{ needs.deployment-check.outputs.continue == 'true' }}
needs: deployment-check
environment: production
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: npm
- name: install dependencies
run: npm ci
- name: Publish - Production
uses: cloudflare/wrangler-action@4c10c1822abba527d820b29e6333e7f5dac2cabd # [email protected]
with:
wranglerVersion: '2.17.0'
apiToken: ${{ secrets.CF_API_TOKEN }}