[애쉬] 다중 이미지 업로드 최적화 초안 작성 (#794) #296
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: Deploy Tecoble | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Deploy Gatsby Project | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.4' | |
cache: npm | |
- name: Install Dependencies | |
run: npm ci | |
- name: Cache Gatsby `.cache` Folder | |
uses: actions/cache@v3 | |
id: gatsby-cache-folder | |
with: | |
path: .cache | |
key: ${{ runner.os }}-cache-gatsby | |
restore-keys: ${{ runner.os }}-cache-gatsby | |
- if: steps.gatsby-cache-folder.outputs.cache-hit == 'true' | |
run: echo 'gatsby-cache-folder cache hit!' | |
- name: Cache Gatsby `public` Folder | |
uses: actions/cache@v3 | |
id: gatsby-public-folder | |
with: | |
path: public | |
key: ${{ runner.os }}-public-gatsby | |
restore-keys: ${{ runner.os }}-public-gatsby | |
- if: steps.gatsby-public-folder.outputs.cache-hit == 'true' | |
run: echo 'gatsby-public-folder cache hit!' | |
- name: Build Gatsby Project | |
run: npm run build | |
env: | |
GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES: true | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.FOR_JAVABLE }} | |
publish_dir: ./public |