mirror of
https://github.com/PaiGramTeam/PaiGramDocs.git
synced 2024-11-25 01:29:43 +00:00
👷 Add Azure Static Web Apps workflow file
This commit is contained in:
parent
bea098349b
commit
58b8c0a83c
45
.github/workflows/azure.yml
vendored
Normal file
45
.github/workflows/azure.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
name: Azure Static Web Apps CI/CD
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- vp
|
||||
pull_request:
|
||||
types: [opened, synchronize, reopened, closed]
|
||||
branches:
|
||||
- vp
|
||||
|
||||
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_AGREEABLE_MUSHROOM_01775C800 }}
|
||||
repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments)
|
||||
action: "upload"
|
||||
###### Repository/Build Configurations - These values can be configured to match your app requirements. ######
|
||||
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
|
||||
app_location: "/" # App source code path
|
||||
api_location: "" # Api source code path - optional
|
||||
output_location: "dist" # Built app content directory - optional
|
||||
###### End of Repository/Build Configurations ######
|
||||
|
||||
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_AGREEABLE_MUSHROOM_01775C800 }}
|
||||
action: "close"
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,3 +2,4 @@ docs/.vitepress/dist
|
||||
docs/.vitepress/cache
|
||||
node_modules/
|
||||
.eslintcache
|
||||
dist/
|
||||
|
@ -43,7 +43,8 @@
|
||||
"vite": "^4.4.9",
|
||||
"vite-plugin-pwa": "^0.16.5",
|
||||
"vitepress": "1.0.0-rc.20",
|
||||
"vue": "^3.3.4"
|
||||
"vue": "^3.3.4",
|
||||
"workbox-window": "^7.0.0"
|
||||
},
|
||||
"simple-git-hooks": {
|
||||
"pre-commit": "npx lint-staged"
|
||||
|
@ -121,6 +121,9 @@ devDependencies:
|
||||
vue:
|
||||
specifier: ^3.3.4
|
||||
version: 3.3.4
|
||||
workbox-window:
|
||||
specifier: ^7.0.0
|
||||
version: registry.npmmirror.com/workbox-window@7.0.0
|
||||
|
||||
packages:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user