Skip to content

use macOS

use macOS #3

Workflow file for this run

on:
push:
branches:
- main
- try-pages
jobs:
deploy:
runs-on: "macos-15"
permissions:
contents: read
deployments: write
name: Deploy to Cloudflare Pages
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install npm packages
run: npm install
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.0"
- name: Get swift version
run: swift --version
- name: Build
run: xcrun docc convert swift-6-beta.docc \
--output-path ./docs \
--hosting-base-path swift-6-beta \
--fallback-display-name "Swift 6 Beta" \
--fallback-bundle-identifier com.example.swift6beta \
--fallback-bundle-version 1.0.0 \
--transform-for-static-hosting
- name: Publish
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: the-swift-programming-language-in-chinese
directory: docs
gitHubToken: ${{ secrets.GITHUB_TOKEN }}