ci: openssl build setting #511
Workflow file for this run
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: Netlify | |
on: push | |
jobs: | |
Deploy: | |
runs-on: ubuntu-latest | |
env: | |
NETLIFY_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- run: npm ci | |
- uses: nelonoel/[email protected] | |
- run: npx typedoc | |
- name: Docsify variables | |
env: | |
DOMAIN: ${{ env.BRANCH_NAME == 'master' && 'forms.hypermedia.app' || format('{0}--shaperone.netlify.app', env.BRANCH_NAME) }} | |
run: npx json -I -f dist/variables.json -e "this.playground='https://$DOMAIN/playground'" | |
- name: Publish preview | |
uses: tpluscode/action-netlify-deploy@nvm | |
if: env.NETLIFY_TOKEN | |
with: | |
NETLIFY_AUTH_TOKEN: ${{ env.NETLIFY_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
NETLIFY_DEPLOY_MESSAGE: Preview ${{ env.BRANCH_NAME }} | |
build_directory: dist | |
deploy_alias: ${{ env.BRANCH_NAME }} | |
NETLIFY_DEPLOY_TO_PROD: ${{ env.BRANCH_NAME == 'master' }} | |
- name: Status check | |
uses: Sibz/[email protected] | |
if: env.NETLIFY_TOKEN | |
with: | |
authToken: ${{ secrets.GITHUB_TOKEN }} | |
context: Netlify Site | |
state: success | |
target_url: https://${{ env.BRANCH_NAME }}--shaperone.netlify.app |