Skip to content

Commit

Permalink
Update ci-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aromanov91 authored Oct 1, 2023
1 parent 81800db commit 3131c91
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,33 @@ on:
- main
workflow_dispatch:
jobs:

build-swiftpm:
name: Build SwiftPM
uses: ./.github/workflows/build-swiftpm.yml
secrets: inherit

build-example:
name: Build Examples
needs: build-swiftpm
uses: ./.github/workflows/build-example.yml
secrets: inherit

bump:
name: Bump version
needs: [build-swiftpm, build-example]
uses: ./.github/workflows/bump.yml
secrets: inherit
release:
name: Release
needs: [build-swiftpm, build-example, bump]
uses: ./.github/workflows/release.yml
secrets: inherit

publish-docc:
name: Publish docc
needs: [build-swiftpm, build-example, bump]
needs: bump
uses: ./.github/workflows/publish-docc.yml
secrets: inherit

release:
name: Release
needs: bump
uses: ./.github/workflows/release.yml
secrets: inherit

0 comments on commit 3131c91

Please sign in to comment.