Merge pull request #330 from the-hideout/dependabot/npm_and_yarn/npm-… #250
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- name: install dependencies | |
run: npm ci | |
- name: Publish - Production | |
uses: cloudflare/wrangler-action@f84a562284fc78278ff9052435d9526f9c718361 # [email protected] | |
with: | |
wranglerVersion: '2.17.0' | |
apiToken: ${{ secrets.CF_API_TOKEN }} |