Skip to content

Commit 39f81ae

Browse files
committed
Fix pods deploy
1 parent 670dc11 commit 39f81ae

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/cd.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ jobs:
77
runs-on: macos-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- uses: sersoft-gmbh/swifty-docs-action@v1
10+
- uses: steven0351/publish-jazzy-docs@v1
1111
with:
12-
module-version: ${{ github.event.inputs.version }}
12+
personal_access_token: ${{ secrets.PAT }}
13+
config: .github/jazzy.yml
14+
version: ${{ github.event.release.tag_name }}
15+
history: false
1316

1417
pods:
1518
runs-on: macos-latest
@@ -18,4 +21,4 @@ jobs:
1821
- run: pod trunk push --allow-warnings
1922
env:
2023
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
21-
VERSION: ${{ github.event.inputs.version }}
24+
VERSION: ${{ github.event.release.tag_name }}

.github/workflows/checks.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ on:
33
push:
44
branches:
55
- master
6+
paths:
7+
- Sources/**
8+
- Tests/**
69
jobs:
710
macOS:
811
runs-on: macos-latest

0 commit comments

Comments
 (0)