An open API service indexing awesome lists of open source software.

https://github.com/mteheran/landingpagetoazure

This is a simple demo of a landing page published in azure static web apps
https://github.com/mteheran/landingpagetoazure

azure azurestaticwebapp html landing-page

Last synced: 4 days ago
JSON representation

This is a simple demo of a landing page published in azure static web apps

Awesome Lists containing this project

README

          

# Landing page to azure
This is a simple demo of a landing page published in azure static web apps

Site in azure static web apps:
https://calm-bush-04ec74410.azurestaticapps.net

### YML file
``` yml
name: Azure Static Web Apps for Static Sites

on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- main

jobs:
build_and_deploy_job:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Build And Deploy
id: builddeploy
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
action: "upload"
app_location: "/union" # App source code path
skip_app_build: true

close_pull_request_job:
if: github.event_name == 'pull_request' && github.event.action == 'closed'
runs-on: ubuntu-latest
name: Close Pull Request Job
steps:
- name: Close Pull Request
id: closepullrequest
uses: Azure/static-web-apps-deploy@v1
with:
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}
action: "close"

```