forked from tuist/tuist
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'tuist-3' into release/runtastic-3
- Loading branch information
Showing
467 changed files
with
9,200 additions
and
5,012 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
open_collective: tuistapp | ||
github: tuist | ||
custom: ["https://polar.sh/tuist"] |
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"categories": [ | ||
{ | ||
"title": "#### Changed", | ||
"labels": ["changelog:changed"] | ||
}, | ||
{ | ||
"title": "#### Added", | ||
"labels": ["changelog:added"] | ||
}, | ||
{ | ||
"title": "#### Fixed", | ||
"labels": ["changelog:fixed"] | ||
} | ||
], | ||
"pr_template": "- ${{TITLE}} by [@${{AUTHOR}}](https://github.com/${{AUTHOR}})" | ||
} |
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
# Build and deploy DocC to GitHub pages. Based off of Pointfree's work here: | ||
# Build and deploy DocC to GitHub pages. Based off of PointFree's work here: | ||
# https://github.com/pointfreeco/swift-parsing/blob/main/.github/workflows/documentation.yml | ||
name: Deploy Tuist Docc | ||
name: Deploy Tuist DocC | ||
|
||
on: | ||
# release: | ||
# types: | ||
# - published | ||
workflow_dispatch: {} | ||
push: | ||
branches: | ||
- main | ||
|
@@ -27,22 +25,29 @@ jobs: | |
step: start | ||
- name: Checkout Package | ||
uses: actions/checkout@v3 | ||
- name: Checkout all tuist versions | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
path: tuist-archive | ||
- name: Select Xcode | ||
run: sudo xcode-select -switch /Applications/Xcode_$(cat .xcode-version).app | ||
- uses: jdx/mise-action@v2 | ||
with: | ||
experimental: true | ||
- name: Build documentation | ||
run: make docs/build | ||
run: bash ./make/tasks/github/build-docc.sh | ||
- name: Fix permissions | ||
run: 'sudo chown -R $USER .build/documentation' | ||
- name: Deploy production to Netlify | ||
uses: South-Paw/[email protected] | ||
id: netlify | ||
- name: Publish to Cloudflare Pages | ||
uses: cloudflare/pages-action@v1 | ||
with: | ||
args: 'deploy --json --prod --dir \"./.build/documentation\" --message \"production [${{ github.sha }}]\"' | ||
env: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | ||
accountId: cc0237353f2f825680b0463629cd4a86 | ||
projectName: tuist-docs | ||
directory: .build/documentation | ||
gitHubToken: ${{ secrets.GITHUB_TOKEN }} | ||
wranglerVersion: '3' | ||
- name: Finish deployment | ||
uses: bobheadxi/deployments@v1 | ||
if: always() | ||
|
@@ -51,4 +56,4 @@ jobs: | |
step: finish | ||
status: ${{ job.status }} | ||
deployment_id: ${{ steps.deployment.outputs.deployment_id }} | ||
env_url: ${{ steps.netlify.outputs.NETLIFY_PROD_URL }} | ||
env_url: "https://docs.tuist.io" |
Oops, something went wrong.