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
- Host: GitHub
- URL: https://github.com/mteheran/landingpagetoazure
- Owner: Mteheran
- License: apache-2.0
- Created: 2021-11-09T23:31:10.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-01T19:48:44.000Z (almost 4 years ago)
- Last Synced: 2025-04-16T02:49:03.888Z (6 months ago)
- Topics: azure, azurestaticwebapp, html, landing-page
- Language: CSS
- Homepage:
- Size: 838 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Landing page to azure
This is a simple demo of a landing page published in azure static web appsSite in azure static web apps:
https://calm-bush-04ec74410.azurestaticapps.net### YML file
``` yml
name: Azure Static Web Apps for Static Siteson:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- mainjobs:
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: trueclose_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"```