feat: 이미지 수정 요청시 이미지가 없다면 기존 이미지도 삭제 #177
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: bookchat-service-docs | |
on: | |
push: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run a one-line script | |
run: echo Hello, world! | |
- name: Upload Documentation to Wiki | |
uses: geneaky/github-wiki-publish-action2@master | |
with: | |
path: "./src/docs/asciidoc" | |
env: | |
GH_PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
WIKI_PAGE_NAME: "BookChatAPI" |