Skip to content

Trust other blocks, when new trustworthy block is discovered it becomes a Cursive block. Cursive blocks are grandfathered into a chain that has been established already.

Notifications You must be signed in to change notification settings

aroc2021/Cursive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Cursive

Trust other blocks, when new trustworthy block is discovered it becomes a Cursive block. Cursive blocks are grandfathered into a chain that has been established already.

This workflow will build and push a node.js application to an Azure Web App when a release is created.

This workflow assumes you have already created the target Azure App Service web app.

To configure this workflow:

1. For Linux apps, add an app setting called WEBSITE_WEBDEPLOY_USE_SCM and set it to true in your app before downloading the file.

2. Set up a secret in your repository named AZURE_WEBAPP_PUBLISH_PROFILE with the value of your Azure publish profile.

3. Change the values for the AZURE_WEBAPP_NAME, AZURE_WEBAPP_PACKAGE_PATH and NODE_VERSION environment variables (below).

For more information on GitHub Actions for Azure, refer to https://github.com/Azure/Actions

For more samples to get started with GitHub Action workflows to deploy to Azure, refer to https://github.com/Azure/actions-workflow-samples

on: release: types: [created]

env: AZURE_WEBAPP_NAME: your-app-name # set this to your application's name AZURE_WEBAPP_PACKAGE_PATH: '.' # set this to the path to your web app project, defaults to the repository root NODE_VERSION: '10.x' # set this to the node version to use

jobs: build-and-deploy: name: Build and Deploy runs-on: ubuntu-latest environment: production steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ env.NODE_VERSION }} uses: actions/setup-node@v2 with: node-version: ${{ env.NODE_VERSION }} - name: npm install, build, and test run: | # Build and test the project, then # deploy to Azure Web App. npm install npm run build --if-present npm run test --if-present - name: 'Deploy to Azure WebApp' uses: azure/webapps-deploy@v2 with: app-name: ${{ env.AZURE_WEBAPP_NAME }} publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} [x] @mentions, #refs, links, formatting, and tags supported

  • list syntax required (any unordered or ordered list supported)
  • this is a complete item
  • this is an incomplete item

About

Trust other blocks, when new trustworthy block is discovered it becomes a Cursive block. Cursive blocks are grandfathered into a chain that has been established already.

Resources

Stars

Watchers

Forks

Packages

No packages published