Skip to content

Update README.md to trigger Apple update (#21) #24

Update README.md to trigger Apple update (#21)

Update README.md to trigger Apple update (#21) #24

Workflow file for this run

name: Generate Docs
on:
push:
branches:
- main
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
docs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up Pages
uses: actions/configure-pages@v1
- name: Set up Swift
uses: swift-actions/setup-swift@v1
- name: Generate Docs
uses: fwcd/swift-docc-action@v1
with:
target: MintingKit
output: ./public
hosting-base-path: MintingKit
transform-for-static-hosting: 'true'
disable-indexing: 'true'
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./public
deploy:
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: docs
steps:
- name: Deploy Docs
id: deployment
uses: actions/deploy-pages@v1