chore: make atom not throw error #30
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: Release | |
on: | |
push: | |
branches: [master] | |
jobs: | |
doc: | |
runs-on: macos-13 | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Setup Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest | |
- name: Install Jazzy | |
run: gem install jazzy | |
- name: Generate Documentation | |
run: jazzy --clean | |
- name: Install Netlify CLI | |
run: yarn global add netlify-cli | |
- name: Build documentation | |
run: netlify build | |
- name: Deploy documentation to Netlify | |
run: netlify deploy --prod --dir=./docs --message ${GITHUB_SHA} |