Azure 정적 웹앱 만들기 Bulid and Deploy Error #66
-
안녕하세요. 변경 사항파일 구조는 기존과 동일하고 추가된 것은 vue-app으로 이용시, #43 와 동일한 Issue가 발생하여
유사한 Issue에 관해서 찾아보니 Oryx issues #623
같은 방식이 있었는데, 이 문제방식을 적용할 경우, vue-app 과 .git 폴더를 남기고 모두 제거해야 하는 것인가요? 아니면 다른 해결 방법이 있는 지 궁금합니다. Bulid and Deploy Error Part
azure-static-web-apps~~~~~.ymlname: Azure Static Web Apps CI/CD
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_ASHY_DESERT_07A0EC910 }}
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: "vue-app" # App source code path
api_location: "api" # 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_ASHY_DESERT_07A0EC910 }}
action: "close" |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
우선 제가 현재 리포를 들어가 본 결과, 4번의 배포 시도를 하신걸로 보입니다.
이 과정을 확인해보셔야할 것 같습니다. |
Beta Was this translation helpful? Give feedback.
-
안녕하세요! @seonghun-dev 님의 Microsoft-Static-Webapp Action 중
해당
라고 적혀 있는데, @seonghun-dev 님이 올려주신 azure-static-web-apps~~~~~.yml의
과 코드 내용이 다릅니다! workflow yml 과 트리거된 action 매칭이 잘 안되어서 실수가 일어난 것 같습니다! workflow 파일 유의해서 수정해보면 좋을 것 같습니다. |
Beta Was this translation helpful? Give feedback.
안녕하세요! @seonghun-dev 님의 Microsoft-Static-Webapp Action 중
.github/workflows/azure-static-web-apps-polite-meadow-071411810.yml
에서 캡쳐하신 것 맞나요?
해당
polite-meadow-071411810.yml
의 Line 30 에는라고 적혀 있는데, @seonghun-dev 님이 올려주신 azure-static-web-apps~~~~~.yml의
과 코드 내용이 다릅니다!
workflow yml 과 트리거된 action 매칭이 잘 안되어서 실수가 일어난 것 같습니다! workflow 파일 유의해서 수정해보면 좋을 것 같습니다.